@qvac/core 0.0.0 → 0.1.1
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/LICENSE.md +198 -0
- package/NOTICE.md +13 -0
- package/README.md +694 -0
- package/SECURITY.md +6 -0
- package/dist/assistant.bundle +47257 -0
- package/dist/assistant.cjs +18 -0
- package/dist/assistant.d.ts +8 -0
- package/dist/prebuilds-manifest.json +380 -0
- package/dist-lib/client.d.ts +2 -0
- package/dist-lib/client.js +1 -0
- package/dist-lib/index.d.ts +13 -0
- package/dist-lib/index.js +10 -0
- package/dist-lib/lib/agent-icons.d.ts +3 -0
- package/dist-lib/lib/agent-icons.js +1 -0
- package/dist-lib/lib/api/agents.d.ts +5 -0
- package/dist-lib/lib/api/agents.js +38 -0
- package/dist-lib/lib/api/app-config.d.ts +5 -0
- package/dist-lib/lib/api/app-config.js +108 -0
- package/dist-lib/lib/api/approval-rules.d.ts +3 -0
- package/dist-lib/lib/api/approval-rules.js +9 -0
- package/dist-lib/lib/api/attachments.d.ts +8 -0
- package/dist-lib/lib/api/attachments.js +15 -0
- package/dist-lib/lib/api/chat-groups.d.ts +5 -0
- package/dist-lib/lib/api/chat-groups.js +12 -0
- package/dist-lib/lib/api/chat.d.ts +5 -0
- package/dist-lib/lib/api/chat.js +38 -0
- package/dist-lib/lib/api/chunks.d.ts +5 -0
- package/dist-lib/lib/api/chunks.js +61 -0
- package/dist-lib/lib/api/config.d.ts +5 -0
- package/dist-lib/lib/api/config.js +15 -0
- package/dist-lib/lib/api/current-mesh.d.ts +5 -0
- package/dist-lib/lib/api/current-mesh.js +12 -0
- package/dist-lib/lib/api/custom-models.d.ts +5 -0
- package/dist-lib/lib/api/custom-models.js +45 -0
- package/dist-lib/lib/api/devices.d.ts +8 -0
- package/dist-lib/lib/api/devices.js +125 -0
- package/dist-lib/lib/api/diagnostics.d.ts +7 -0
- package/dist-lib/lib/api/diagnostics.js +7 -0
- package/dist-lib/lib/api/effective-ctx-size.d.ts +2 -0
- package/dist-lib/lib/api/effective-ctx-size.js +10 -0
- package/dist-lib/lib/api/execution.d.ts +3 -0
- package/dist-lib/lib/api/execution.js +45 -0
- package/dist-lib/lib/api/files.d.ts +3 -0
- package/dist-lib/lib/api/files.js +48 -0
- package/dist-lib/lib/api/index.d.ts +62 -0
- package/dist-lib/lib/api/index.js +172 -0
- package/dist-lib/lib/api/instrument.d.ts +2 -0
- package/dist-lib/lib/api/instrument.js +86 -0
- package/dist-lib/lib/api/knowledge.d.ts +8 -0
- package/dist-lib/lib/api/knowledge.js +26 -0
- package/dist-lib/lib/api/logs.d.ts +14 -0
- package/dist-lib/lib/api/logs.js +116 -0
- package/dist-lib/lib/api/mesh.d.ts +13 -0
- package/dist-lib/lib/api/mesh.js +25 -0
- package/dist-lib/lib/api/model-download.d.ts +5 -0
- package/dist-lib/lib/api/model-download.js +47 -0
- package/dist-lib/lib/api/network.d.ts +8 -0
- package/dist-lib/lib/api/network.js +6 -0
- package/dist-lib/lib/api/notifications.d.ts +21 -0
- package/dist-lib/lib/api/notifications.js +108 -0
- package/dist-lib/lib/api/rag.d.ts +7 -0
- package/dist-lib/lib/api/rag.js +216 -0
- package/dist-lib/lib/api/sync.d.ts +3 -0
- package/dist-lib/lib/api/sync.js +6 -0
- package/dist-lib/lib/api/tool-activity.d.ts +5 -0
- package/dist-lib/lib/api/tool-activity.js +53 -0
- package/dist-lib/lib/api/tool-configs.d.ts +6 -0
- package/dist-lib/lib/api/tool-configs.js +27 -0
- package/dist-lib/lib/api/watchable.d.ts +12 -0
- package/dist-lib/lib/api/watchable.js +121 -0
- package/dist-lib/lib/assistant-client.d.ts +21 -0
- package/dist-lib/lib/assistant-client.js +52 -0
- package/dist-lib/lib/assistant-tree.d.ts +50 -0
- package/dist-lib/lib/assistant-tree.js +184 -0
- package/dist-lib/lib/assistant.d.ts +425 -0
- package/dist-lib/lib/assistant.js +2706 -0
- package/dist-lib/lib/audio-format.d.ts +4 -0
- package/dist-lib/lib/audio-format.js +4 -0
- package/dist-lib/lib/chat-title.d.ts +5 -0
- package/dist-lib/lib/chat-title.js +58 -0
- package/dist-lib/lib/client.d.ts +25 -0
- package/dist-lib/lib/client.js +53 -0
- package/dist-lib/lib/collabora/convert.d.ts +9 -0
- package/dist-lib/lib/collabora/convert.js +62 -0
- package/dist-lib/lib/collabora/entry.d.ts +1 -0
- package/dist-lib/lib/collabora/entry.js +44 -0
- package/dist-lib/lib/collabora/protocol.d.ts +15 -0
- package/dist-lib/lib/collabora/protocol.js +24 -0
- package/dist-lib/lib/collabora/worker.d.ts +5 -0
- package/dist-lib/lib/collabora/worker.js +111 -0
- package/dist-lib/lib/compaction.d.ts +30 -0
- package/dist-lib/lib/compaction.js +95 -0
- package/dist-lib/lib/constants.d.ts +4 -0
- package/dist-lib/lib/constants.js +4 -0
- package/dist-lib/lib/core/agent.d.ts +15 -0
- package/dist-lib/lib/core/agent.js +149 -0
- package/dist-lib/lib/core/app-build.d.ts +7 -0
- package/dist-lib/lib/core/app-build.js +1 -0
- package/dist-lib/lib/core/approval-rules.d.ts +15 -0
- package/dist-lib/lib/core/approval-rules.js +41 -0
- package/dist-lib/lib/core/async-iterable.d.ts +13 -0
- package/dist-lib/lib/core/async-iterable.js +65 -0
- package/dist-lib/lib/core/attachment-link.d.ts +7 -0
- package/dist-lib/lib/core/attachment-link.js +6 -0
- package/dist-lib/lib/core/audio-attachment.d.ts +1 -0
- package/dist-lib/lib/core/audio-attachment.js +4 -0
- package/dist-lib/lib/core/blind-peers.d.ts +6 -0
- package/dist-lib/lib/core/blind-peers.js +13 -0
- package/dist-lib/lib/core/chat-activity.d.ts +7 -0
- package/dist-lib/lib/core/chat-activity.js +244 -0
- package/dist-lib/lib/core/chat-group.d.ts +14 -0
- package/dist-lib/lib/core/chat-group.js +79 -0
- package/dist-lib/lib/core/chat-search.d.ts +17 -0
- package/dist-lib/lib/core/chat-search.js +199 -0
- package/dist-lib/lib/core/chat.d.ts +37 -0
- package/dist-lib/lib/core/chat.js +196 -0
- package/dist-lib/lib/core/chunk.d.ts +61 -0
- package/dist-lib/lib/core/chunk.js +212 -0
- package/dist-lib/lib/core/contract/activity.d.ts +11 -0
- package/dist-lib/lib/core/contract/activity.js +45 -0
- package/dist-lib/lib/core/contract/agents.d.ts +2 -0
- package/dist-lib/lib/core/contract/agents.js +29 -0
- package/dist-lib/lib/core/contract/approval-rules.d.ts +2 -0
- package/dist-lib/lib/core/contract/approval-rules.js +14 -0
- package/dist-lib/lib/core/contract/attestations.d.ts +2 -0
- package/dist-lib/lib/core/contract/attestations.js +14 -0
- package/dist-lib/lib/core/contract/chat-group.d.ts +2 -0
- package/dist-lib/lib/core/contract/chat-group.js +20 -0
- package/dist-lib/lib/core/contract/chat.d.ts +2 -0
- package/dist-lib/lib/core/contract/chat.js +18 -0
- package/dist-lib/lib/core/contract/chunks.d.ts +2 -0
- package/dist-lib/lib/core/contract/chunks.js +156 -0
- package/dist-lib/lib/core/contract/devices.d.ts +2 -0
- package/dist-lib/lib/core/contract/devices.js +110 -0
- package/dist-lib/lib/core/contract/index.d.ts +2 -0
- package/dist-lib/lib/core/contract/index.js +30 -0
- package/dist-lib/lib/core/contract/indexing.d.ts +4 -0
- package/dist-lib/lib/core/contract/indexing.js +82 -0
- package/dist-lib/lib/core/contract/knowledge.d.ts +2 -0
- package/dist-lib/lib/core/contract/knowledge.js +55 -0
- package/dist-lib/lib/core/contract/members.d.ts +2 -0
- package/dist-lib/lib/core/contract/members.js +96 -0
- package/dist-lib/lib/core/contract/seed-defaults.d.ts +2 -0
- package/dist-lib/lib/core/contract/seed-defaults.js +29 -0
- package/dist-lib/lib/core/contract/tool-activity.d.ts +2 -0
- package/dist-lib/lib/core/contract/tool-activity.js +25 -0
- package/dist-lib/lib/core/contract/tool-configs.d.ts +2 -0
- package/dist-lib/lib/core/contract/tool-configs.js +50 -0
- package/dist-lib/lib/core/contract/types.d.ts +11 -0
- package/dist-lib/lib/core/contract/types.js +1 -0
- package/dist-lib/lib/core/contract/writers.d.ts +2 -0
- package/dist-lib/lib/core/contract/writers.js +112 -0
- package/dist-lib/lib/core/cpu-info-node.d.ts +3 -0
- package/dist-lib/lib/core/cpu-info-node.js +2 -0
- package/dist-lib/lib/core/departures.d.ts +41 -0
- package/dist-lib/lib/core/departures.js +145 -0
- package/dist-lib/lib/core/device-attestation.d.ts +6 -0
- package/dist-lib/lib/core/device-attestation.js +12 -0
- package/dist-lib/lib/core/devices.d.ts +14 -0
- package/dist-lib/lib/core/devices.js +11 -0
- package/dist-lib/lib/core/document-attachment.d.ts +22 -0
- package/dist-lib/lib/core/document-attachment.js +35 -0
- package/dist-lib/lib/core/files/attachments.d.ts +8 -0
- package/dist-lib/lib/core/files/attachments.js +50 -0
- package/dist-lib/lib/core/files/index.d.ts +133 -0
- package/dist-lib/lib/core/files/index.js +585 -0
- package/dist-lib/lib/core/files/knowledge.d.ts +9 -0
- package/dist-lib/lib/core/files/knowledge.js +31 -0
- package/dist-lib/lib/core/files/preview/image.d.ts +4 -0
- package/dist-lib/lib/core/files/preview/image.js +42 -0
- package/dist-lib/lib/core/files/preview/index.d.ts +33 -0
- package/dist-lib/lib/core/files/preview/index.js +161 -0
- package/dist-lib/lib/core/files/processing/claims.d.ts +26 -0
- package/dist-lib/lib/core/files/processing/claims.js +89 -0
- package/dist-lib/lib/core/files/processing/document.d.ts +100 -0
- package/dist-lib/lib/core/files/processing/document.js +101 -0
- package/dist-lib/lib/core/files/processing/index.d.ts +75 -0
- package/dist-lib/lib/core/files/processing/index.js +295 -0
- package/dist-lib/lib/core/files/processing/ownership.d.ts +11 -0
- package/dist-lib/lib/core/files/processing/ownership.js +41 -0
- package/dist-lib/lib/core/files/processing/protocol.d.ts +29 -0
- package/dist-lib/lib/core/files/processing/protocol.js +70 -0
- package/dist-lib/lib/core/files/processing/settle.d.ts +10 -0
- package/dist-lib/lib/core/files/processing/settle.js +75 -0
- package/dist-lib/lib/core/files/processing/source.d.ts +36 -0
- package/dist-lib/lib/core/files/processing/source.js +96 -0
- package/dist-lib/lib/core/files/processing/state.d.ts +64 -0
- package/dist-lib/lib/core/files/processing/state.js +118 -0
- package/dist-lib/lib/core/files/rag/artifact/codec.d.ts +3 -0
- package/dist-lib/lib/core/files/rag/artifact/codec.js +172 -0
- package/dist-lib/lib/core/files/rag/artifact/id.d.ts +10 -0
- package/dist-lib/lib/core/files/rag/artifact/id.js +39 -0
- package/dist-lib/lib/core/files/rag/artifact/types.d.ts +24 -0
- package/dist-lib/lib/core/files/rag/artifact/types.js +41 -0
- package/dist-lib/lib/core/files/rag/build.d.ts +25 -0
- package/dist-lib/lib/core/files/rag/build.js +60 -0
- package/dist-lib/lib/core/files/rag/chunk/chunking.d.ts +12 -0
- package/dist-lib/lib/core/files/rag/chunk/chunking.js +117 -0
- package/dist-lib/lib/core/files/rag/chunk/metadata.d.ts +30 -0
- package/dist-lib/lib/core/files/rag/chunk/metadata.js +89 -0
- package/dist-lib/lib/core/files/rag/chunk/tokenizer.d.ts +7 -0
- package/dist-lib/lib/core/files/rag/chunk/tokenizer.js +18 -0
- package/dist-lib/lib/core/files/rag/document-types.d.ts +11 -0
- package/dist-lib/lib/core/files/rag/document-types.js +94 -0
- package/dist-lib/lib/core/files/rag/extract/csv-text.d.ts +1 -0
- package/dist-lib/lib/core/files/rag/extract/csv-text.js +117 -0
- package/dist-lib/lib/core/files/rag/extract/document-types.d.ts +22 -0
- package/dist-lib/lib/core/files/rag/extract/document-types.js +152 -0
- package/dist-lib/lib/core/files/rag/extract/extract.d.ts +17 -0
- package/dist-lib/lib/core/files/rag/extract/extract.js +81 -0
- package/dist-lib/lib/core/files/rag/extract/html-table-text.d.ts +1 -0
- package/dist-lib/lib/core/files/rag/extract/html-table-text.js +125 -0
- package/dist-lib/lib/core/files/rag/extract/html-text.d.ts +1 -0
- package/dist-lib/lib/core/files/rag/extract/html-text.js +132 -0
- package/dist-lib/lib/core/files/rag/extract/office-collabora.d.ts +2 -0
- package/dist-lib/lib/core/files/rag/extract/office-collabora.js +8 -0
- package/dist-lib/lib/core/files/rag/extract/pdf-platform.d.ts +17 -0
- package/dist-lib/lib/core/files/rag/extract/pdf-platform.js +141 -0
- package/dist-lib/lib/core/files/rag/extract/pdf-text.d.ts +12 -0
- package/dist-lib/lib/core/files/rag/extract/pdf-text.js +43 -0
- package/dist-lib/lib/core/files/rag/extract/rtf-text.d.ts +1 -0
- package/dist-lib/lib/core/files/rag/extract/rtf-text.js +15 -0
- package/dist-lib/lib/core/files/rag/extract/text-decoding.d.ts +1 -0
- package/dist-lib/lib/core/files/rag/extract/text-decoding.js +91 -0
- package/dist-lib/lib/core/files/rag/extract/types.d.ts +36 -0
- package/dist-lib/lib/core/files/rag/extract/types.js +12 -0
- package/dist-lib/lib/core/files/rag/extract/utf.d.ts +2 -0
- package/dist-lib/lib/core/files/rag/extract/utf.js +18 -0
- package/dist-lib/lib/core/files/rag/index.d.ts +54 -0
- package/dist-lib/lib/core/files/rag/index.js +79 -0
- package/dist-lib/lib/core/files/rag/limits.d.ts +2 -0
- package/dist-lib/lib/core/files/rag/limits.js +2 -0
- package/dist-lib/lib/core/files/rag/load.d.ts +28 -0
- package/dist-lib/lib/core/files/rag/load.js +250 -0
- package/dist-lib/lib/core/files/rag/models.d.ts +1 -0
- package/dist-lib/lib/core/files/rag/models.js +1 -0
- package/dist-lib/lib/core/files/rag/policy.d.ts +2 -0
- package/dist-lib/lib/core/files/rag/policy.js +23 -0
- package/dist-lib/lib/core/files/rag/produce.d.ts +21 -0
- package/dist-lib/lib/core/files/rag/produce.js +214 -0
- package/dist-lib/lib/core/files/rag/retrieval/citation-match.d.ts +2 -0
- package/dist-lib/lib/core/files/rag/retrieval/citation-match.js +16 -0
- package/dist-lib/lib/core/files/rag/retrieval/coverage.d.ts +4 -0
- package/dist-lib/lib/core/files/rag/retrieval/coverage.js +48 -0
- package/dist-lib/lib/core/files/rag/retrieval/diversity.d.ts +10 -0
- package/dist-lib/lib/core/files/rag/retrieval/diversity.js +37 -0
- package/dist-lib/lib/core/files/rag/retrieval/floor.d.ts +5 -0
- package/dist-lib/lib/core/files/rag/retrieval/floor.js +21 -0
- package/dist-lib/lib/core/files/rag/retrieval/format.d.ts +6 -0
- package/dist-lib/lib/core/files/rag/retrieval/format.js +21 -0
- package/dist-lib/lib/core/files/rag/retrieval/full-text.d.ts +22 -0
- package/dist-lib/lib/core/files/rag/retrieval/full-text.js +137 -0
- package/dist-lib/lib/core/files/rag/retrieval/knowledge.d.ts +2 -0
- package/dist-lib/lib/core/files/rag/retrieval/knowledge.js +53 -0
- package/dist-lib/lib/core/files/rag/retrieval/notices.d.ts +16 -0
- package/dist-lib/lib/core/files/rag/retrieval/notices.js +27 -0
- package/dist-lib/lib/core/files/rag/retrieval/scoring.d.ts +8 -0
- package/dist-lib/lib/core/files/rag/retrieval/scoring.js +82 -0
- package/dist-lib/lib/core/files/rag/retrieval/search.d.ts +3 -0
- package/dist-lib/lib/core/files/rag/retrieval/search.js +46 -0
- package/dist-lib/lib/core/files/rag/retrieval/selection.d.ts +10 -0
- package/dist-lib/lib/core/files/rag/retrieval/selection.js +63 -0
- package/dist-lib/lib/core/files/rag/retrieval/source-tag-filter.d.ts +6 -0
- package/dist-lib/lib/core/files/rag/retrieval/source-tag-filter.js +79 -0
- package/dist-lib/lib/core/files/rag/retrieval/sources.d.ts +13 -0
- package/dist-lib/lib/core/files/rag/retrieval/sources.js +20 -0
- package/dist-lib/lib/core/files/rag/retrieval/target.d.ts +13 -0
- package/dist-lib/lib/core/files/rag/retrieval/target.js +89 -0
- package/dist-lib/lib/core/files/rag/retrieval/terms.d.ts +8 -0
- package/dist-lib/lib/core/files/rag/retrieval/terms.js +70 -0
- package/dist-lib/lib/core/files/rag/retrieval/types.d.ts +28 -0
- package/dist-lib/lib/core/files/rag/retrieval/types.js +1 -0
- package/dist-lib/lib/core/files/rag/retrieval/web-sources.d.ts +8 -0
- package/dist-lib/lib/core/files/rag/retrieval/web-sources.js +41 -0
- package/dist-lib/lib/core/files/rag/retrieval/whole-document-query.d.ts +1 -0
- package/dist-lib/lib/core/files/rag/retrieval/whole-document-query.js +96 -0
- package/dist-lib/lib/core/files/rag/vector/memory.d.ts +15 -0
- package/dist-lib/lib/core/files/rag/vector/memory.js +135 -0
- package/dist-lib/lib/core/files/rag/vector/types.d.ts +28 -0
- package/dist-lib/lib/core/files/rag/vector/types.js +1 -0
- package/dist-lib/lib/core/files/records/chunks.d.ts +3 -0
- package/dist-lib/lib/core/files/records/chunks.js +12 -0
- package/dist-lib/lib/core/files/records/index.d.ts +10 -0
- package/dist-lib/lib/core/files/records/index.js +8 -0
- package/dist-lib/lib/core/files/records/knowledge.d.ts +22 -0
- package/dist-lib/lib/core/files/records/knowledge.js +105 -0
- package/dist-lib/lib/core/files/records/linkage.d.ts +11 -0
- package/dist-lib/lib/core/files/records/linkage.js +27 -0
- package/dist-lib/lib/core/files/records/output.d.ts +8 -0
- package/dist-lib/lib/core/files/records/output.js +38 -0
- package/dist-lib/lib/core/files/records/reclaim.d.ts +5 -0
- package/dist-lib/lib/core/files/records/reclaim.js +73 -0
- package/dist-lib/lib/core/files/records/routing.d.ts +23 -0
- package/dist-lib/lib/core/files/records/routing.js +62 -0
- package/dist-lib/lib/core/files/records/source.d.ts +16 -0
- package/dist-lib/lib/core/files/records/source.js +70 -0
- package/dist-lib/lib/core/files/records/sweep.d.ts +2 -0
- package/dist-lib/lib/core/files/records/sweep.js +30 -0
- package/dist-lib/lib/core/files/store/blob.d.ts +29 -0
- package/dist-lib/lib/core/files/store/blob.js +98 -0
- package/dist-lib/lib/core/files/store/index.d.ts +36 -0
- package/dist-lib/lib/core/files/store/index.js +89 -0
- package/dist-lib/lib/core/files/store/inline.d.ts +8 -0
- package/dist-lib/lib/core/files/store/inline.js +38 -0
- package/dist-lib/lib/core/files/store/reference.d.ts +27 -0
- package/dist-lib/lib/core/files/store/reference.js +168 -0
- package/dist-lib/lib/core/files/store/server.d.ts +27 -0
- package/dist-lib/lib/core/files/store/server.js +114 -0
- package/dist-lib/lib/core/files/store/sweep.d.ts +2 -0
- package/dist-lib/lib/core/files/store/sweep.js +45 -0
- package/dist-lib/lib/core/files/upload-input.d.ts +27 -0
- package/dist-lib/lib/core/files/upload-input.js +52 -0
- package/dist-lib/lib/core/files/upload.d.ts +32 -0
- package/dist-lib/lib/core/files/upload.js +201 -0
- package/dist-lib/lib/core/fs-drives.d.ts +18 -0
- package/dist-lib/lib/core/fs-drives.js +58 -0
- package/dist-lib/lib/core/gpu-info-node.d.ts +3 -0
- package/dist-lib/lib/core/gpu-info-node.js +2 -0
- package/dist-lib/lib/core/handoff-channel.d.ts +46 -0
- package/dist-lib/lib/core/handoff-channel.js +102 -0
- package/dist-lib/lib/core/health-assistant.d.ts +7 -0
- package/dist-lib/lib/core/health-assistant.js +24 -0
- package/dist-lib/lib/core/helpers/index.d.ts +5 -0
- package/dist-lib/lib/core/helpers/index.js +74 -0
- package/dist-lib/lib/core/hosted-agents.d.ts +36 -0
- package/dist-lib/lib/core/hosted-agents.js +127 -0
- package/dist-lib/lib/core/id.d.ts +1 -0
- package/dist-lib/lib/core/id.js +5 -0
- package/dist-lib/lib/core/identity.d.ts +14 -0
- package/dist-lib/lib/core/identity.js +45 -0
- package/dist-lib/lib/core/image/cache-sweep.d.ts +12 -0
- package/dist-lib/lib/core/image/cache-sweep.js +67 -0
- package/dist-lib/lib/core/image/normalize.d.ts +3 -0
- package/dist-lib/lib/core/image/normalize.js +49 -0
- package/dist-lib/lib/core/image/sniff.d.ts +3 -0
- package/dist-lib/lib/core/image/sniff.js +149 -0
- package/dist-lib/lib/core/invite.d.ts +14 -0
- package/dist-lib/lib/core/invite.js +36 -0
- package/dist-lib/lib/core/local/index.d.ts +71 -0
- package/dist-lib/lib/core/local/index.js +391 -0
- package/dist-lib/lib/core/membership.d.ts +15 -0
- package/dist-lib/lib/core/membership.js +40 -0
- package/dist-lib/lib/core/mesh.d.ts +153 -0
- package/dist-lib/lib/core/mesh.js +509 -0
- package/dist-lib/lib/core/migrations/agent-catalog.d.ts +6 -0
- package/dist-lib/lib/core/migrations/agent-catalog.js +17 -0
- package/dist-lib/lib/core/migrations/index.d.ts +5 -0
- package/dist-lib/lib/core/migrations/index.js +7 -0
- package/dist-lib/lib/core/migrations/membership.d.ts +11 -0
- package/dist-lib/lib/core/migrations/membership.js +26 -0
- package/dist-lib/lib/core/min-version.d.ts +6 -0
- package/dist-lib/lib/core/min-version.js +31 -0
- package/dist-lib/lib/core/next-frame.d.ts +6 -0
- package/dist-lib/lib/core/next-frame.js +27 -0
- package/dist-lib/lib/core/notification.d.ts +6 -0
- package/dist-lib/lib/core/notification.js +162 -0
- package/dist-lib/lib/core/ota-config.d.ts +19 -0
- package/dist-lib/lib/core/ota-config.js +44 -0
- package/dist-lib/lib/core/prompt-history.d.ts +12 -0
- package/dist-lib/lib/core/prompt-history.js +40 -0
- package/dist-lib/lib/core/search-fold.d.ts +1 -0
- package/dist-lib/lib/core/search-fold.js +4 -0
- package/dist-lib/lib/core/secret-handoff.d.ts +17 -0
- package/dist-lib/lib/core/secret-handoff.js +29 -0
- package/dist-lib/lib/core/send.d.ts +18 -0
- package/dist-lib/lib/core/send.js +46 -0
- package/dist-lib/lib/core/skill-overlay-handoff.d.ts +25 -0
- package/dist-lib/lib/core/skill-overlay-handoff.js +50 -0
- package/dist-lib/lib/core/skill-overlay-receiver.d.ts +8 -0
- package/dist-lib/lib/core/skill-overlay-receiver.js +20 -0
- package/dist-lib/lib/core/skill-secrets.d.ts +25 -0
- package/dist-lib/lib/core/skill-secrets.js +79 -0
- package/dist-lib/lib/core/sync/chats.d.ts +3 -0
- package/dist-lib/lib/core/sync/chats.js +5 -0
- package/dist-lib/lib/core/sync/chunks.d.ts +9 -0
- package/dist-lib/lib/core/sync/chunks.js +16 -0
- package/dist-lib/lib/core/sync/devices.d.ts +4 -0
- package/dist-lib/lib/core/sync/devices.js +12 -0
- package/dist-lib/lib/core/sync/files.d.ts +16 -0
- package/dist-lib/lib/core/sync/files.js +109 -0
- package/dist-lib/lib/core/sync/index.d.ts +5 -0
- package/dist-lib/lib/core/sync/index.js +63 -0
- package/dist-lib/lib/core/sync-status.d.ts +17 -0
- package/dist-lib/lib/core/sync-status.js +129 -0
- package/dist-lib/lib/core/system-info.d.ts +24 -0
- package/dist-lib/lib/core/system-info.js +66 -0
- package/dist-lib/lib/core/tool-activity.d.ts +22 -0
- package/dist-lib/lib/core/tool-activity.js +39 -0
- package/dist-lib/lib/core/tool-configs.d.ts +13 -0
- package/dist-lib/lib/core/tool-configs.js +141 -0
- package/dist-lib/lib/core.d.ts +291 -0
- package/dist-lib/lib/core.js +2126 -0
- package/dist-lib/lib/credential-pusher.d.ts +67 -0
- package/dist-lib/lib/credential-pusher.js +290 -0
- package/dist-lib/lib/custom-model-pusher.d.ts +9 -0
- package/dist-lib/lib/custom-model-pusher.js +42 -0
- package/dist-lib/lib/custom-model-source.d.ts +15 -0
- package/dist-lib/lib/custom-model-source.js +46 -0
- package/dist-lib/lib/deadline.d.ts +9 -0
- package/dist-lib/lib/deadline.js +31 -0
- package/dist-lib/lib/diagnostics.d.ts +35 -0
- package/dist-lib/lib/diagnostics.js +14 -0
- package/dist-lib/lib/fetch-node.d.ts +1 -0
- package/dist-lib/lib/fetch-node.js +1 -0
- package/dist-lib/lib/fs-drive-bridge.d.ts +12 -0
- package/dist-lib/lib/fs-drive-bridge.js +186 -0
- package/dist-lib/lib/fs-grant-keys.d.ts +2 -0
- package/dist-lib/lib/fs-grant-keys.js +6 -0
- package/dist-lib/lib/fs-grants.d.ts +10 -0
- package/dist-lib/lib/fs-grants.js +44 -0
- package/dist-lib/lib/image-cache-dir.d.ts +1 -0
- package/dist-lib/lib/image-cache-dir.js +5 -0
- package/dist-lib/lib/integrations/index.d.ts +4 -0
- package/dist-lib/lib/integrations/index.js +3 -0
- package/dist-lib/lib/integrations/mcp-providers.d.ts +12 -0
- package/dist-lib/lib/integrations/mcp-providers.js +22 -0
- package/dist-lib/lib/integrations/oauth-providers.d.ts +14 -0
- package/dist-lib/lib/integrations/oauth-providers.js +116 -0
- package/dist-lib/lib/integrations/setup-routes.d.ts +12 -0
- package/dist-lib/lib/integrations/setup-routes.js +114 -0
- package/dist-lib/lib/knowledge-search.d.ts +7 -0
- package/dist-lib/lib/knowledge-search.js +53 -0
- package/dist-lib/lib/kv-cache-reclaim.d.ts +5 -0
- package/dist-lib/lib/kv-cache-reclaim.js +29 -0
- package/dist-lib/lib/kv-cache.d.ts +18 -0
- package/dist-lib/lib/kv-cache.js +33 -0
- package/dist-lib/lib/legacy-core-domain.d.ts +258 -0
- package/dist-lib/lib/legacy-core-domain.js +1 -0
- package/dist-lib/lib/llm-model-names.d.ts +1 -0
- package/dist-lib/lib/llm-model-names.js +1 -0
- package/dist-lib/lib/log-buffer.d.ts +7 -0
- package/dist-lib/lib/log-buffer.js +16 -0
- package/dist-lib/lib/log-levels.d.ts +7 -0
- package/dist-lib/lib/log-levels.js +1 -0
- package/dist-lib/lib/log.d.ts +60 -0
- package/dist-lib/lib/log.js +149 -0
- package/dist-lib/lib/logger-type.d.ts +13 -0
- package/dist-lib/lib/logger-type.js +1 -0
- package/dist-lib/lib/logger.d.ts +5 -0
- package/dist-lib/lib/logger.js +18 -0
- package/dist-lib/lib/model-catalog-revision.d.ts +9 -0
- package/dist-lib/lib/model-catalog-revision.js +65 -0
- package/dist-lib/lib/model-clamp.d.ts +6 -0
- package/dist-lib/lib/model-clamp.js +20 -0
- package/dist-lib/lib/model-context.d.ts +13 -0
- package/dist-lib/lib/model-context.js +71 -0
- package/dist-lib/lib/model-download-status.d.ts +29 -0
- package/dist-lib/lib/model-download-status.js +56 -0
- package/dist-lib/lib/model-download.d.ts +191 -0
- package/dist-lib/lib/model-download.js +787 -0
- package/dist-lib/lib/oauth/asana.d.ts +35 -0
- package/dist-lib/lib/oauth/asana.js +71 -0
- package/dist-lib/lib/oauth/browser-connect.d.ts +22 -0
- package/dist-lib/lib/oauth/browser-connect.js +83 -0
- package/dist-lib/lib/oauth/client.d.ts +9 -0
- package/dist-lib/lib/oauth/client.js +9 -0
- package/dist-lib/lib/oauth/common.d.ts +38 -0
- package/dist-lib/lib/oauth/common.js +36 -0
- package/dist-lib/lib/oauth/crypto.d.ts +3 -0
- package/dist-lib/lib/oauth/crypto.js +25 -0
- package/dist-lib/lib/oauth/fetch-platform.d.ts +1 -0
- package/dist-lib/lib/oauth/fetch-platform.js +1 -0
- package/dist-lib/lib/oauth/flow-core.d.ts +6 -0
- package/dist-lib/lib/oauth/flow-core.js +37 -0
- package/dist-lib/lib/oauth/flow.d.ts +3 -0
- package/dist-lib/lib/oauth/flow.js +24 -0
- package/dist-lib/lib/oauth/google.d.ts +37 -0
- package/dist-lib/lib/oauth/google.js +77 -0
- package/dist-lib/lib/oauth/host.d.ts +5 -0
- package/dist-lib/lib/oauth/host.js +3 -0
- package/dist-lib/lib/oauth/keys.d.ts +25 -0
- package/dist-lib/lib/oauth/keys.js +93 -0
- package/dist-lib/lib/oauth/loopback.d.ts +3 -0
- package/dist-lib/lib/oauth/loopback.js +119 -0
- package/dist-lib/lib/oauth/loopback.stub.d.ts +3 -0
- package/dist-lib/lib/oauth/loopback.stub.js +6 -0
- package/dist-lib/lib/oauth/notion.d.ts +34 -0
- package/dist-lib/lib/oauth/notion.js +82 -0
- package/dist-lib/lib/oauth/pkce-runtime.d.ts +3 -0
- package/dist-lib/lib/oauth/pkce-runtime.js +5 -0
- package/dist-lib/lib/oauth/pkce.d.ts +8 -0
- package/dist-lib/lib/oauth/pkce.js +6 -0
- package/dist-lib/lib/oauth/providers.d.ts +5 -0
- package/dist-lib/lib/oauth/providers.js +73 -0
- package/dist-lib/lib/oauth/redirect-types.d.ts +19 -0
- package/dist-lib/lib/oauth/redirect-types.js +1 -0
- package/dist-lib/lib/oauth/register.d.ts +3 -0
- package/dist-lib/lib/oauth/register.js +34 -0
- package/dist-lib/lib/oauth/resolve.d.ts +17 -0
- package/dist-lib/lib/oauth/resolve.js +57 -0
- package/dist-lib/lib/oauth/spotify.d.ts +32 -0
- package/dist-lib/lib/oauth/spotify.js +73 -0
- package/dist-lib/lib/oauth/token-exchange-core.d.ts +6 -0
- package/dist-lib/lib/oauth/token-exchange-core.js +97 -0
- package/dist-lib/lib/oauth/token-exchange.d.ts +5 -0
- package/dist-lib/lib/oauth/token-exchange.js +9 -0
- package/dist-lib/lib/oauth/types.d.ts +54 -0
- package/dist-lib/lib/oauth/types.js +1 -0
- package/dist-lib/lib/oauth.client.d.ts +5 -0
- package/dist-lib/lib/oauth.client.js +2 -0
- package/dist-lib/lib/oauth.d.ts +14 -0
- package/dist-lib/lib/oauth.js +12 -0
- package/dist-lib/lib/obsidian-key.d.ts +1 -0
- package/dist-lib/lib/obsidian-key.js +1 -0
- package/dist-lib/lib/race-resource.d.ts +5 -0
- package/dist-lib/lib/race-resource.js +25 -0
- package/dist-lib/lib/reconnecting-watch.d.ts +2 -0
- package/dist-lib/lib/reconnecting-watch.js +78 -0
- package/dist-lib/lib/retry-budget.d.ts +14 -0
- package/dist-lib/lib/retry-budget.js +39 -0
- package/dist-lib/lib/run-notices.d.ts +23 -0
- package/dist-lib/lib/run-notices.js +33 -0
- package/dist-lib/lib/run-transcript.d.ts +35 -0
- package/dist-lib/lib/run-transcript.js +106 -0
- package/dist-lib/lib/skill-readiness.d.ts +2 -0
- package/dist-lib/lib/skill-readiness.js +21 -0
- package/dist-lib/lib/skill-types.d.ts +70 -0
- package/dist-lib/lib/skill-types.js +1 -0
- package/dist-lib/lib/spec-loader.d.ts +14 -0
- package/dist-lib/lib/spec-loader.js +9 -0
- package/dist-lib/lib/suspend-lifecycle.d.ts +17 -0
- package/dist-lib/lib/suspend-lifecycle.js +33 -0
- package/dist-lib/lib/task.d.ts +26 -0
- package/dist-lib/lib/task.js +69 -0
- package/dist-lib/lib/unref.d.ts +3 -0
- package/dist-lib/lib/unref.js +4 -0
- package/dist-lib/lib/wav-duration.d.ts +1 -0
- package/dist-lib/lib/wav-duration.js +53 -0
- package/dist-lib/lib/write-queue.d.ts +22 -0
- package/dist-lib/lib/write-queue.js +39 -0
- package/dist-lib/schema/build.d.ts +1 -0
- package/dist-lib/schema/build.js +120 -0
- package/dist-lib/schema/config.d.ts +4 -0
- package/dist-lib/schema/config.js +7 -0
- package/dist-lib/schema/content.d.ts +20 -0
- package/dist-lib/schema/content.js +122 -0
- package/dist-lib/schema/engine.d.ts +2 -0
- package/dist-lib/schema/engine.js +2013 -0
- package/dist-lib/schema/field-order.d.ts +1 -0
- package/dist-lib/schema/field-order.js +95 -0
- package/dist-lib/schema/helpers.d.ts +28 -0
- package/dist-lib/schema/helpers.js +176 -0
- package/dist-lib/schema/local.d.ts +2 -0
- package/dist-lib/schema/local.js +133 -0
- package/dist-lib/schema/qvac.d.ts +22 -0
- package/dist-lib/schema/qvac.js +722 -0
- package/dist-lib/schema/vendor.d.ts +5 -0
- package/dist-lib/spec/bind.d.ts +2 -0
- package/dist-lib/spec/bind.js +520 -0
- package/dist-lib/spec/calls.d.ts +3 -0
- package/dist-lib/spec/calls.js +129 -0
- package/dist-lib/spec/capabilities.d.ts +263 -0
- package/dist-lib/spec/config/hyperconf/index.d.ts +15 -0
- package/dist-lib/spec/config/hyperconf/index.js +24 -0
- package/dist-lib/spec/config/hyperconf/package.json +3 -0
- package/dist-lib/spec/config/hyperschema/index.js +81 -0
- package/dist-lib/spec/config/hyperschema/schema.json +19 -0
- package/dist-lib/spec/hrpc/hrpc.json +1500 -0
- package/dist-lib/spec/hrpc/index.d.ts +3 -0
- package/dist-lib/spec/hrpc/index.js +1545 -0
- package/dist-lib/spec/hrpc/messages.d.ts +4 -0
- package/dist-lib/spec/hrpc/messages.js +8373 -0
- package/dist-lib/spec/hyperschema/index.d.ts +20 -0
- package/dist-lib/spec/hyperschema/index.js +8373 -0
- package/dist-lib/spec/hyperschema/schema.json +6202 -0
- package/dist-lib/spec/hyperschema/types.d.ts +1545 -0
- package/dist-lib/spec/index.d.ts +36 -0
- package/dist-lib/spec/index.js +6 -0
- package/dist-lib/spec/local/hyperdb/db.json +186 -0
- package/dist-lib/spec/local/hyperdb/index.d.ts +9 -0
- package/dist-lib/spec/local/hyperdb/index.js +855 -0
- package/dist-lib/spec/local/hyperdb/messages.js +2189 -0
- package/dist-lib/spec/local/hyperschema/index.js +1208 -0
- package/dist-lib/spec/local/hyperschema/schema.json +639 -0
- package/dist-lib/spec/local/hyperschema/types.d.ts +159 -0
- package/dist-lib/spec/mesh/hyperdb/db.json +702 -0
- package/dist-lib/spec/mesh/hyperdb/index.d.ts +9 -0
- package/dist-lib/spec/mesh/hyperdb/index.js +2260 -0
- package/dist-lib/spec/mesh/hyperdb/messages.js +7453 -0
- package/dist-lib/spec/mesh/hyperdispatch/dispatch.json +174 -0
- package/dist-lib/spec/mesh/hyperdispatch/index.d.ts +13 -0
- package/dist-lib/spec/mesh/hyperdispatch/index.js +566 -0
- package/dist-lib/spec/mesh/hyperdispatch/messages.js +5713 -0
- package/dist-lib/spec/mesh/hyperschema/index.d.ts +14 -0
- package/dist-lib/spec/mesh/hyperschema/index.js +5713 -0
- package/dist-lib/spec/mesh/hyperschema/schema.json +3142 -0
- package/dist-lib/spec/mesh/hyperschema/types.d.ts +754 -0
- package/ducks.png +0 -0
- package/package.json +336 -1
|
@@ -0,0 +1,754 @@
|
|
|
1
|
+
// This file is autogenerated by hyperschema-ts
|
|
2
|
+
// Schema version: 5
|
|
3
|
+
// Do not edit manually.
|
|
4
|
+
|
|
5
|
+
export type QvacChunkType = "user-message" | "content" | "thinking" | "tool-call" | "tool-result" | "attachment" | "approval-request" | "run-status" | "run-request" | "sources" | "compaction"
|
|
6
|
+
|
|
7
|
+
export type QvacRunState = "executing" | "completed" | "failed" | "canceled"
|
|
8
|
+
|
|
9
|
+
export type QvacApprovalStatus = "pending" | "approved" | "denied"
|
|
10
|
+
|
|
11
|
+
export interface QvacResourceDescriptor {
|
|
12
|
+
kind: string
|
|
13
|
+
label: string
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export type QvacProgressPhase = "loading" | "downloading" | "queued" | "generating" | "transcribing" | "compacting"
|
|
17
|
+
|
|
18
|
+
export interface QvacRunProgress {
|
|
19
|
+
phase: QvacProgressPhase
|
|
20
|
+
model?: string | null
|
|
21
|
+
percentage?: number
|
|
22
|
+
busyChatId?: string | null
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface QvacChunkContentRunStatusV1 {
|
|
26
|
+
state: QvacRunState
|
|
27
|
+
model?: string | null
|
|
28
|
+
percentage?: number
|
|
29
|
+
reason?: string | null
|
|
30
|
+
metrics?: unknown | null
|
|
31
|
+
progress?: QvacRunProgress | null
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export type QvacChunkContentRunStatus = (QvacChunkContentRunStatusV1 & { version?: number })
|
|
35
|
+
|
|
36
|
+
export interface QvacChunkContentApprovalRequestV1 {
|
|
37
|
+
status: QvacApprovalStatus
|
|
38
|
+
name: string
|
|
39
|
+
arguments: unknown
|
|
40
|
+
resource?: QvacResourceDescriptor | null
|
|
41
|
+
agentId?: string | null
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export type QvacChunkContentApprovalRequest = (QvacChunkContentApprovalRequestV1 & { version?: number })
|
|
45
|
+
|
|
46
|
+
export interface QvacChunkContentUserMessageV1 {
|
|
47
|
+
text: string
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export type QvacChunkContentUserMessage = (QvacChunkContentUserMessageV1 & { version?: number })
|
|
51
|
+
|
|
52
|
+
export interface QvacChunkContentAssistantV1 {
|
|
53
|
+
text: string
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export type QvacChunkContentAssistant = (QvacChunkContentAssistantV1 & { version?: number })
|
|
57
|
+
|
|
58
|
+
export interface QvacChunkContentThinkingV1 {
|
|
59
|
+
text: string
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export type QvacChunkContentThinking = (QvacChunkContentThinkingV1 & { version?: number })
|
|
63
|
+
|
|
64
|
+
export interface QvacChunkContentToolCallV1 {
|
|
65
|
+
name: string
|
|
66
|
+
arguments?: unknown | null
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export type QvacChunkContentToolCall = (QvacChunkContentToolCallV1 & { version?: number })
|
|
70
|
+
|
|
71
|
+
export interface QvacChunkContentToolResultV1 {
|
|
72
|
+
name: string
|
|
73
|
+
result?: unknown | null
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export type QvacChunkContentToolResult = (QvacChunkContentToolResultV1 & { version?: number })
|
|
77
|
+
|
|
78
|
+
export interface QvacChunkContentAttachmentV1 {
|
|
79
|
+
id: string
|
|
80
|
+
fileName: string
|
|
81
|
+
mimeType: string
|
|
82
|
+
byteLength: number
|
|
83
|
+
blobId: string
|
|
84
|
+
createdAt: number
|
|
85
|
+
deletedAt?: number
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export type QvacChunkContentAttachment = (QvacChunkContentAttachmentV1 & { version?: number })
|
|
89
|
+
|
|
90
|
+
export interface QvacChunkContentRunRequestV1 {
|
|
91
|
+
agentId: string
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export type QvacChunkContentRunRequest = (QvacChunkContentRunRequestV1 & { version?: number })
|
|
95
|
+
|
|
96
|
+
export interface QvacRagSource {
|
|
97
|
+
documentId?: string | null
|
|
98
|
+
title: string
|
|
99
|
+
chunkIndex: number
|
|
100
|
+
excerpt: string
|
|
101
|
+
attachmentId?: string | null
|
|
102
|
+
artifactId?: string | null
|
|
103
|
+
score: number
|
|
104
|
+
url?: string | null
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export interface QvacChunkContentSourcesV1 {
|
|
108
|
+
sources: QvacRagSource[]
|
|
109
|
+
notice?: string | null
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export type QvacChunkContentSources = (QvacChunkContentSourcesV1 & { version?: number })
|
|
113
|
+
|
|
114
|
+
export interface QvacChunkV1 {
|
|
115
|
+
id: string
|
|
116
|
+
chatId: string
|
|
117
|
+
runId?: string | null
|
|
118
|
+
type: QvacChunkType
|
|
119
|
+
seq: number
|
|
120
|
+
originDeviceId: Buffer
|
|
121
|
+
createdAt: number
|
|
122
|
+
updatedAt?: number
|
|
123
|
+
userMessage?: QvacChunkContentUserMessage | null
|
|
124
|
+
content?: QvacChunkContentAssistant | null
|
|
125
|
+
thinking?: QvacChunkContentThinking | null
|
|
126
|
+
toolCall?: QvacChunkContentToolCall | null
|
|
127
|
+
toolResult?: QvacChunkContentToolResult | null
|
|
128
|
+
attachment?: QvacChunkContentAttachment | null
|
|
129
|
+
approvalRequest?: QvacChunkContentApprovalRequest | null
|
|
130
|
+
runStatus?: QvacChunkContentRunStatus | null
|
|
131
|
+
runRequest?: QvacChunkContentRunRequest | null
|
|
132
|
+
sources?: QvacChunkContentSources | null
|
|
133
|
+
parentId?: string | null
|
|
134
|
+
effect?: string | null
|
|
135
|
+
intent?: string | null
|
|
136
|
+
display?: unknown | null
|
|
137
|
+
rawCall?: string | null
|
|
138
|
+
compaction?: QvacChunkContentCompaction | null
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export type QvacChunk = (QvacChunkV1 & { version?: number })
|
|
142
|
+
|
|
143
|
+
export interface QvacChunkCounterV1 {
|
|
144
|
+
chatId: string
|
|
145
|
+
count: number
|
|
146
|
+
lastActivityAt?: number
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export type QvacChunkCounter = (QvacChunkCounterV1 & { version?: number })
|
|
150
|
+
|
|
151
|
+
export interface QvacAppendChunkOperationV1 {
|
|
152
|
+
id: string
|
|
153
|
+
chatId: string
|
|
154
|
+
runId?: string | null
|
|
155
|
+
type: QvacChunkType
|
|
156
|
+
originDeviceId: Buffer
|
|
157
|
+
createdAt: number
|
|
158
|
+
userMessage?: QvacChunkContentUserMessage | null
|
|
159
|
+
content?: QvacChunkContentAssistant | null
|
|
160
|
+
thinking?: QvacChunkContentThinking | null
|
|
161
|
+
toolCall?: QvacChunkContentToolCall | null
|
|
162
|
+
toolResult?: QvacChunkContentToolResult | null
|
|
163
|
+
attachment?: QvacChunkContentAttachment | null
|
|
164
|
+
approvalRequest?: QvacChunkContentApprovalRequest | null
|
|
165
|
+
runStatus?: QvacChunkContentRunStatus | null
|
|
166
|
+
runRequest?: QvacChunkContentRunRequest | null
|
|
167
|
+
sources?: QvacChunkContentSources | null
|
|
168
|
+
parentId?: string | null
|
|
169
|
+
effect?: string | null
|
|
170
|
+
intent?: string | null
|
|
171
|
+
display?: unknown | null
|
|
172
|
+
rawCall?: string | null
|
|
173
|
+
compaction?: QvacChunkContentCompaction | null
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
export type QvacAppendChunkOperation = (QvacAppendChunkOperationV1 & { version?: number })
|
|
177
|
+
|
|
178
|
+
export interface QvacUpdateChunkOperationV1 {
|
|
179
|
+
id: string
|
|
180
|
+
updatedAt: number
|
|
181
|
+
runStatus?: QvacChunkContentRunStatus | null
|
|
182
|
+
attachment?: QvacChunkContentAttachment | null
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
export type QvacUpdateChunkOperation = (QvacUpdateChunkOperationV1 & { version?: number })
|
|
186
|
+
|
|
187
|
+
export interface QvacResolveApprovalOperationV1 {
|
|
188
|
+
id: string
|
|
189
|
+
approved?: boolean
|
|
190
|
+
resolvedAt: number
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export type QvacResolveApprovalOperation = (QvacResolveApprovalOperationV1 & { version?: number })
|
|
194
|
+
|
|
195
|
+
export type QvacAgentReasoning = "inherit" | "enabled" | "disabled"
|
|
196
|
+
|
|
197
|
+
export type QvacCapabilityProfile = "tiny" | "low" | "mid" | "high" | "xhigh"
|
|
198
|
+
|
|
199
|
+
export type QvacImageModelChoice = "sd2" | "sdxl" | "flux2-klein"
|
|
200
|
+
|
|
201
|
+
export type QvacAgentIconName = "artificial-intelligence" | "code" | "work" | "calendar" | "home" | "shield" | "bar-chart" | "email" | "auto-stories" | "person" | "heart"
|
|
202
|
+
|
|
203
|
+
export type QvacToolsAccessScope = "all" | "selected"
|
|
204
|
+
|
|
205
|
+
export type QvacSkillsAccessScope = "all" | "selected"
|
|
206
|
+
|
|
207
|
+
export interface QvacAgentV1 {
|
|
208
|
+
id: string
|
|
209
|
+
name: string
|
|
210
|
+
bio: string
|
|
211
|
+
providerDeviceId: Buffer
|
|
212
|
+
modelName: string
|
|
213
|
+
reasoning: QvacAgentReasoning
|
|
214
|
+
enabledSkills?: string[] | null
|
|
215
|
+
enabledTools?: string[] | null
|
|
216
|
+
installedSkills?: string[] | null
|
|
217
|
+
isDefault?: boolean
|
|
218
|
+
createdAt: number
|
|
219
|
+
updatedAt: number
|
|
220
|
+
deletedAt?: number
|
|
221
|
+
imageModelChoice?: QvacImageModelChoice | null
|
|
222
|
+
kvCacheK?: string | null
|
|
223
|
+
kvCacheV?: string | null
|
|
224
|
+
iconName?: QvacAgentIconName | null
|
|
225
|
+
ctxSize?: number
|
|
226
|
+
toolsScope?: QvacToolsAccessScope | null
|
|
227
|
+
skillsScope?: QvacSkillsAccessScope | null
|
|
228
|
+
imageSteps?: number
|
|
229
|
+
imageWidth?: number
|
|
230
|
+
imageHeight?: number
|
|
231
|
+
approvalMode?: QvacApprovalMode | null
|
|
232
|
+
disabledToolsets?: string[] | null
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export type QvacAgent = (QvacAgentV1 & { version?: number })
|
|
236
|
+
|
|
237
|
+
export interface QvacChatV1 {
|
|
238
|
+
id: string
|
|
239
|
+
agentId: string
|
|
240
|
+
title: string
|
|
241
|
+
createdAt: number
|
|
242
|
+
deletedAt?: number
|
|
243
|
+
ragEnabled?: boolean
|
|
244
|
+
webSearchEnabled?: boolean
|
|
245
|
+
updatedAt?: number
|
|
246
|
+
groupId?: string | null
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
export type QvacChat = (QvacChatV1 & { version?: number })
|
|
250
|
+
|
|
251
|
+
export interface QvacDeviceV1 {
|
|
252
|
+
id: Buffer
|
|
253
|
+
name: string
|
|
254
|
+
joinedAt: number
|
|
255
|
+
capabilityProfile: QvacCapabilityProfile
|
|
256
|
+
recommendedModelName: string
|
|
257
|
+
revoked?: boolean
|
|
258
|
+
revokedAt?: number
|
|
259
|
+
writerKey?: Buffer | null
|
|
260
|
+
installedToolNames?: string[] | null
|
|
261
|
+
installedSkillNames?: string[] | null
|
|
262
|
+
installedModelNames?: string[] | null
|
|
263
|
+
cachedModelNames?: string[] | null
|
|
264
|
+
revokedBy?: Buffer | null
|
|
265
|
+
appVersion?: string | null
|
|
266
|
+
appBuild?: string | null
|
|
267
|
+
appChannel?: QvacAppChannel | null
|
|
268
|
+
platform?: string | null
|
|
269
|
+
readySkillNames?: string[] | null
|
|
270
|
+
toolCatalog?: QvacToolReportEntry[] | null
|
|
271
|
+
memberId?: Buffer | null
|
|
272
|
+
memberProof?: Buffer | null
|
|
273
|
+
attestedAt?: number
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
export type QvacDevice = (QvacDeviceV1 & { version?: number })
|
|
277
|
+
|
|
278
|
+
export interface QvacWriterV1 {
|
|
279
|
+
writerKey: Buffer
|
|
280
|
+
device?: QvacDevice | null
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
export type QvacWriter = (QvacWriterV1 & { version?: number })
|
|
284
|
+
|
|
285
|
+
export interface QvacRemoveWriterOperationV1 {
|
|
286
|
+
writerKey: Buffer
|
|
287
|
+
deviceId?: Buffer | null
|
|
288
|
+
revokedAt?: number
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
export type QvacRemoveWriterOperation = (QvacRemoveWriterOperationV1 & { version?: number })
|
|
292
|
+
|
|
293
|
+
export interface QvacWriterClaimV1 {
|
|
294
|
+
signature: Buffer
|
|
295
|
+
device?: QvacDevice | null
|
|
296
|
+
deviceId?: Buffer | null
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
export type QvacWriterClaim = (QvacWriterClaimV1 & { version?: number })
|
|
300
|
+
|
|
301
|
+
export interface QvacRegisterDeviceOperationV1 {
|
|
302
|
+
device: QvacDevice
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export type QvacRegisterDeviceOperation = (QvacRegisterDeviceOperationV1 & { version?: number })
|
|
306
|
+
|
|
307
|
+
export interface QvacUpdateDeviceOperationV1 {
|
|
308
|
+
device: QvacDevice
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export type QvacUpdateDeviceOperation = (QvacUpdateDeviceOperationV1 & { version?: number })
|
|
312
|
+
|
|
313
|
+
export interface QvacReportDeviceCapabilitiesOperationV1 {
|
|
314
|
+
deviceId: Buffer
|
|
315
|
+
installedToolNames?: string[] | null
|
|
316
|
+
installedSkillNames?: string[] | null
|
|
317
|
+
installedModelNames?: string[] | null
|
|
318
|
+
cachedModelNames?: string[] | null
|
|
319
|
+
readySkillNames?: string[] | null
|
|
320
|
+
toolCatalog?: QvacToolReportEntry[] | null
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
export type QvacReportDeviceCapabilitiesOperation = (QvacReportDeviceCapabilitiesOperationV1 & { version?: number })
|
|
324
|
+
|
|
325
|
+
export interface QvacPutAgentOperationV1 {
|
|
326
|
+
agent: QvacAgent
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
export type QvacPutAgentOperation = (QvacPutAgentOperationV1 & { version?: number })
|
|
330
|
+
|
|
331
|
+
export interface QvacPutChatOperationV1 {
|
|
332
|
+
chat: QvacChat
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
export type QvacPutChatOperation = (QvacPutChatOperationV1 & { version?: number })
|
|
336
|
+
|
|
337
|
+
export type QvacApprovalDecision = "allow" | "deny"
|
|
338
|
+
|
|
339
|
+
export interface QvacApprovalRuleV1 {
|
|
340
|
+
id: string
|
|
341
|
+
toolName?: string | null
|
|
342
|
+
resourceKind?: string | null
|
|
343
|
+
resourcePattern?: string | null
|
|
344
|
+
decision: QvacApprovalDecision
|
|
345
|
+
createdAt: number
|
|
346
|
+
updatedAt: number
|
|
347
|
+
expiresAt?: number
|
|
348
|
+
agentId?: string | null
|
|
349
|
+
effect?: string | null
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
export type QvacApprovalRule = (QvacApprovalRuleV1 & { version?: number })
|
|
353
|
+
|
|
354
|
+
export interface QvacPutApprovalRuleOperationV1 {
|
|
355
|
+
rule: QvacApprovalRule
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
export type QvacPutApprovalRuleOperation = (QvacPutApprovalRuleOperationV1 & { version?: number })
|
|
359
|
+
|
|
360
|
+
export interface QvacMeshBlindPeerV1 {
|
|
361
|
+
key: Buffer
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
export type QvacMeshBlindPeer = (QvacMeshBlindPeerV1 & { version?: number })
|
|
365
|
+
|
|
366
|
+
export interface QvacAutobeeHead {
|
|
367
|
+
key: Buffer
|
|
368
|
+
length: number
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
export interface QvacMeshInviteV1 {
|
|
372
|
+
meshKey: Buffer
|
|
373
|
+
seed: Buffer
|
|
374
|
+
fastForward?: QvacAutobeeHead | null
|
|
375
|
+
additionalNodes?: { host: string; family?: number; port: number }[] | null
|
|
376
|
+
blindPeers?: Buffer[] | null
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
export type QvacMeshInvite = (QvacMeshInviteV1 & { version?: number })
|
|
380
|
+
|
|
381
|
+
export interface QvacSeedDefaultsOperationV1 {
|
|
382
|
+
agent: QvacAgent
|
|
383
|
+
chat: QvacChat
|
|
384
|
+
blindPeers?: QvacMeshBlindPeer[] | null
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
export type QvacSeedDefaultsOperation = (QvacSeedDefaultsOperationV1 & { version?: number })
|
|
388
|
+
|
|
389
|
+
export interface QvacKnowledgeV1 {
|
|
390
|
+
id: string
|
|
391
|
+
chatId: string
|
|
392
|
+
fileName: string
|
|
393
|
+
mimeType: string
|
|
394
|
+
byteLength: number
|
|
395
|
+
blobId: string
|
|
396
|
+
createdAt: number
|
|
397
|
+
updatedAt: number
|
|
398
|
+
deletedAt?: number
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
export type QvacKnowledge = (QvacKnowledgeV1 & { version?: number })
|
|
402
|
+
|
|
403
|
+
export interface QvacAddKnowledgeOperationV1 {
|
|
404
|
+
knowledge: QvacKnowledge
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
export type QvacAddKnowledgeOperation = (QvacAddKnowledgeOperationV1 & { version?: number })
|
|
408
|
+
|
|
409
|
+
export interface QvacRemoveKnowledgeOperationV1 {
|
|
410
|
+
knowledgeId: string
|
|
411
|
+
at: number
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
export type QvacRemoveKnowledgeOperation = (QvacRemoveKnowledgeOperationV1 & { version?: number })
|
|
415
|
+
|
|
416
|
+
export interface QvacKnowledgeArtifactV1 {
|
|
417
|
+
id: string
|
|
418
|
+
knowledgeId: string
|
|
419
|
+
sourceHash: string
|
|
420
|
+
embedderVersion: string
|
|
421
|
+
dimensions: number
|
|
422
|
+
artifactBlobId: string
|
|
423
|
+
createdAt: number
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
export type QvacKnowledgeArtifact = (QvacKnowledgeArtifactV1 & { version?: number })
|
|
427
|
+
|
|
428
|
+
export interface QvacAddKnowledgeArtifactOperationV1 {
|
|
429
|
+
artifact: QvacKnowledgeArtifact
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
export type QvacAddKnowledgeArtifactOperation = (QvacAddKnowledgeArtifactOperationV1 & { version?: number })
|
|
433
|
+
|
|
434
|
+
export type QvacIndexingState = "indexing" | "ready" | "failed"
|
|
435
|
+
|
|
436
|
+
export type QvacIndexingResolution = "ready" | "failed"
|
|
437
|
+
|
|
438
|
+
export interface QvacIndexingStatusV1 {
|
|
439
|
+
id: string
|
|
440
|
+
knowledgeId: string
|
|
441
|
+
chatId: string
|
|
442
|
+
status: QvacIndexingState
|
|
443
|
+
claimId: string
|
|
444
|
+
claimedBy: Buffer
|
|
445
|
+
at: number
|
|
446
|
+
expiresAt: number
|
|
447
|
+
error?: string | null
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
export type QvacIndexingStatus = (QvacIndexingStatusV1 & { version?: number })
|
|
451
|
+
|
|
452
|
+
export interface QvacClaimIndexingOperationV1 {
|
|
453
|
+
id: string
|
|
454
|
+
knowledgeId: string
|
|
455
|
+
claimId: string
|
|
456
|
+
at: number
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
export type QvacClaimIndexingOperation = (QvacClaimIndexingOperationV1 & { version?: number })
|
|
460
|
+
|
|
461
|
+
export interface QvacResolveIndexingOperationV1 {
|
|
462
|
+
id: string
|
|
463
|
+
claimId: string
|
|
464
|
+
status: QvacIndexingResolution
|
|
465
|
+
error?: string | null
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
export type QvacResolveIndexingOperation = (QvacResolveIndexingOperationV1 & { version?: number })
|
|
469
|
+
|
|
470
|
+
export interface QvacUpdateDeviceProfileOperationV1 {
|
|
471
|
+
deviceId: Buffer
|
|
472
|
+
capabilityProfile: QvacCapabilityProfile
|
|
473
|
+
recommendedModelName: string
|
|
474
|
+
platform?: string | null
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
export type QvacUpdateDeviceProfileOperation = (QvacUpdateDeviceProfileOperationV1 & { version?: number })
|
|
478
|
+
|
|
479
|
+
export type QvacAppChannel = "dev" | "staging" | "prod"
|
|
480
|
+
|
|
481
|
+
export type QvacApprovalMode = "ask" | "skip-all"
|
|
482
|
+
|
|
483
|
+
export interface QvacReportDeviceVersionOperationV1 {
|
|
484
|
+
deviceId: Buffer
|
|
485
|
+
appVersion: string
|
|
486
|
+
appBuild?: string | null
|
|
487
|
+
appChannel: QvacAppChannel
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
export type QvacReportDeviceVersionOperation = (QvacReportDeviceVersionOperationV1 & { version?: number })
|
|
491
|
+
|
|
492
|
+
export interface QvacToolConfigsV1 {
|
|
493
|
+
agentId: string
|
|
494
|
+
toolName: string
|
|
495
|
+
settings: unknown
|
|
496
|
+
createdAt: number
|
|
497
|
+
updatedAt: number
|
|
498
|
+
deletedAt?: number
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
export type QvacToolConfigs = (QvacToolConfigsV1 & { version?: number })
|
|
502
|
+
|
|
503
|
+
export interface QvacPutToolConfigsOperationV1 {
|
|
504
|
+
settings: QvacToolConfigs
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
export type QvacPutToolConfigsOperation = (QvacPutToolConfigsOperationV1 & { version?: number })
|
|
508
|
+
|
|
509
|
+
export type QvacToolDecision = "auto" | "allowed" | "denied" | "skip-all" | "blocked"
|
|
510
|
+
|
|
511
|
+
export interface QvacToolActivityV1 {
|
|
512
|
+
id: string
|
|
513
|
+
agentId: string
|
|
514
|
+
originDeviceId: Buffer
|
|
515
|
+
chatId?: string | null
|
|
516
|
+
runId?: string | null
|
|
517
|
+
toolName: string
|
|
518
|
+
arguments?: unknown | null
|
|
519
|
+
resource?: QvacResourceDescriptor | null
|
|
520
|
+
effect?: string | null
|
|
521
|
+
decision: QvacToolDecision
|
|
522
|
+
at: number
|
|
523
|
+
seq: number
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
export type QvacToolActivity = (QvacToolActivityV1 & { version?: number })
|
|
527
|
+
|
|
528
|
+
export interface QvacAppendToolActivityOperationV1 {
|
|
529
|
+
activity: QvacToolActivity
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
export type QvacAppendToolActivityOperation = (QvacAppendToolActivityOperationV1 & { version?: number })
|
|
533
|
+
|
|
534
|
+
export interface QvacToolActivityCounterV1 {
|
|
535
|
+
agentId: string
|
|
536
|
+
count: number
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
export type QvacToolActivityCounter = (QvacToolActivityCounterV1 & { version?: number })
|
|
540
|
+
|
|
541
|
+
export interface QvacToolReportEntry {
|
|
542
|
+
name: string
|
|
543
|
+
promptChars: number
|
|
544
|
+
toolset?: string | null
|
|
545
|
+
skillGated?: boolean
|
|
546
|
+
scopeRequired?: boolean
|
|
547
|
+
rootsRequired?: boolean
|
|
548
|
+
writeRootsRequired?: boolean
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
export interface QvacWriterActivityV1 {
|
|
552
|
+
writerKey: Buffer
|
|
553
|
+
length: number
|
|
554
|
+
clock: number
|
|
555
|
+
deviceId: Buffer
|
|
556
|
+
revoked?: boolean
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
export type QvacWriterActivity = (QvacWriterActivityV1 & { version?: number })
|
|
560
|
+
|
|
561
|
+
export interface QvacDeviceAttestationV1 {
|
|
562
|
+
deviceId: Buffer
|
|
563
|
+
signature: Buffer
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
export type QvacDeviceAttestation = (QvacDeviceAttestationV1 & { version?: number })
|
|
567
|
+
|
|
568
|
+
export interface QvacMemberV1 {
|
|
569
|
+
id: Buffer
|
|
570
|
+
name: string
|
|
571
|
+
joinedAt: number
|
|
572
|
+
updatedAt: number
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
export type QvacMember = (QvacMemberV1 & { version?: number })
|
|
576
|
+
|
|
577
|
+
export interface QvacMintMemberOperationV1 {
|
|
578
|
+
member: QvacMember
|
|
579
|
+
proof: Buffer
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
export type QvacMintMemberOperation = (QvacMintMemberOperationV1 & { version?: number })
|
|
583
|
+
|
|
584
|
+
export interface QvacUpdateMemberOperationV1 {
|
|
585
|
+
member: QvacMember
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
export type QvacUpdateMemberOperation = (QvacUpdateMemberOperationV1 & { version?: number })
|
|
589
|
+
|
|
590
|
+
export interface QvacAttestMemberDeviceOperationV1 {
|
|
591
|
+
deviceId: Buffer
|
|
592
|
+
memberId: Buffer
|
|
593
|
+
proof: Buffer
|
|
594
|
+
attestedAt: number
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
export type QvacAttestMemberDeviceOperation = (QvacAttestMemberDeviceOperationV1 & { version?: number })
|
|
598
|
+
|
|
599
|
+
export interface QvacChunkContentCompactionV1 {
|
|
600
|
+
summary: string
|
|
601
|
+
throughId: string
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
export type QvacChunkContentCompaction = (QvacChunkContentCompactionV1 & { version?: number })
|
|
605
|
+
|
|
606
|
+
export interface QvacChatGroupV1 {
|
|
607
|
+
id: string
|
|
608
|
+
name: string
|
|
609
|
+
createdAt: number
|
|
610
|
+
updatedAt: number
|
|
611
|
+
deletedAt?: number
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
export type QvacChatGroup = (QvacChatGroupV1 & { version?: number })
|
|
615
|
+
|
|
616
|
+
export interface QvacPutChatGroupOperationV1 {
|
|
617
|
+
group: QvacChatGroup
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
export type QvacPutChatGroupOperation = (QvacPutChatGroupOperationV1 & { version?: number })
|
|
621
|
+
|
|
622
|
+
export interface SchemaTypes {
|
|
623
|
+
"@qvac/chunk-type": QvacChunkType
|
|
624
|
+
"@qvac/run-state": QvacRunState
|
|
625
|
+
"@qvac/approval-status": QvacApprovalStatus
|
|
626
|
+
"@qvac/resource-descriptor": QvacResourceDescriptor
|
|
627
|
+
"@qvac/progress-phase": QvacProgressPhase
|
|
628
|
+
"@qvac/run-progress": QvacRunProgress
|
|
629
|
+
"@qvac/chunk-content-run-status-v1": QvacChunkContentRunStatusV1
|
|
630
|
+
"@qvac/chunk-content-run-status": QvacChunkContentRunStatus
|
|
631
|
+
"@qvac/chunk-content-approval-request-v1": QvacChunkContentApprovalRequestV1
|
|
632
|
+
"@qvac/chunk-content-approval-request": QvacChunkContentApprovalRequest
|
|
633
|
+
"@qvac/chunk-content-user-message-v1": QvacChunkContentUserMessageV1
|
|
634
|
+
"@qvac/chunk-content-user-message": QvacChunkContentUserMessage
|
|
635
|
+
"@qvac/chunk-content-assistant-v1": QvacChunkContentAssistantV1
|
|
636
|
+
"@qvac/chunk-content-assistant": QvacChunkContentAssistant
|
|
637
|
+
"@qvac/chunk-content-thinking-v1": QvacChunkContentThinkingV1
|
|
638
|
+
"@qvac/chunk-content-thinking": QvacChunkContentThinking
|
|
639
|
+
"@qvac/chunk-content-tool-call-v1": QvacChunkContentToolCallV1
|
|
640
|
+
"@qvac/chunk-content-tool-call": QvacChunkContentToolCall
|
|
641
|
+
"@qvac/chunk-content-tool-result-v1": QvacChunkContentToolResultV1
|
|
642
|
+
"@qvac/chunk-content-tool-result": QvacChunkContentToolResult
|
|
643
|
+
"@qvac/chunk-content-attachment-v1": QvacChunkContentAttachmentV1
|
|
644
|
+
"@qvac/chunk-content-attachment": QvacChunkContentAttachment
|
|
645
|
+
"@qvac/chunk-content-run-request-v1": QvacChunkContentRunRequestV1
|
|
646
|
+
"@qvac/chunk-content-run-request": QvacChunkContentRunRequest
|
|
647
|
+
"@qvac/rag-source": QvacRagSource
|
|
648
|
+
"@qvac/chunk-content-sources-v1": QvacChunkContentSourcesV1
|
|
649
|
+
"@qvac/chunk-content-sources": QvacChunkContentSources
|
|
650
|
+
"@qvac/chunk-v1": QvacChunkV1
|
|
651
|
+
"@qvac/chunk": QvacChunk
|
|
652
|
+
"@qvac/chunk-counter-v1": QvacChunkCounterV1
|
|
653
|
+
"@qvac/chunk-counter": QvacChunkCounter
|
|
654
|
+
"@qvac/append-chunk-operation-v1": QvacAppendChunkOperationV1
|
|
655
|
+
"@qvac/append-chunk-operation": QvacAppendChunkOperation
|
|
656
|
+
"@qvac/update-chunk-operation-v1": QvacUpdateChunkOperationV1
|
|
657
|
+
"@qvac/update-chunk-operation": QvacUpdateChunkOperation
|
|
658
|
+
"@qvac/resolve-approval-operation-v1": QvacResolveApprovalOperationV1
|
|
659
|
+
"@qvac/resolve-approval-operation": QvacResolveApprovalOperation
|
|
660
|
+
"@qvac/agent-reasoning": QvacAgentReasoning
|
|
661
|
+
"@qvac/capability-profile": QvacCapabilityProfile
|
|
662
|
+
"@qvac/image-model-choice": QvacImageModelChoice
|
|
663
|
+
"@qvac/agent-icon-name": QvacAgentIconName
|
|
664
|
+
"@qvac/tools-access-scope": QvacToolsAccessScope
|
|
665
|
+
"@qvac/skills-access-scope": QvacSkillsAccessScope
|
|
666
|
+
"@qvac/agent-v1": QvacAgentV1
|
|
667
|
+
"@qvac/agent": QvacAgent
|
|
668
|
+
"@qvac/chat-v1": QvacChatV1
|
|
669
|
+
"@qvac/chat": QvacChat
|
|
670
|
+
"@qvac/device-v1": QvacDeviceV1
|
|
671
|
+
"@qvac/device": QvacDevice
|
|
672
|
+
"@qvac/writer-v1": QvacWriterV1
|
|
673
|
+
"@qvac/writer": QvacWriter
|
|
674
|
+
"@qvac/remove-writer-operation-v1": QvacRemoveWriterOperationV1
|
|
675
|
+
"@qvac/remove-writer-operation": QvacRemoveWriterOperation
|
|
676
|
+
"@qvac/writer-claim-v1": QvacWriterClaimV1
|
|
677
|
+
"@qvac/writer-claim": QvacWriterClaim
|
|
678
|
+
"@qvac/register-device-operation-v1": QvacRegisterDeviceOperationV1
|
|
679
|
+
"@qvac/register-device-operation": QvacRegisterDeviceOperation
|
|
680
|
+
"@qvac/update-device-operation-v1": QvacUpdateDeviceOperationV1
|
|
681
|
+
"@qvac/update-device-operation": QvacUpdateDeviceOperation
|
|
682
|
+
"@qvac/report-device-capabilities-operation-v1": QvacReportDeviceCapabilitiesOperationV1
|
|
683
|
+
"@qvac/report-device-capabilities-operation": QvacReportDeviceCapabilitiesOperation
|
|
684
|
+
"@qvac/put-agent-operation-v1": QvacPutAgentOperationV1
|
|
685
|
+
"@qvac/put-agent-operation": QvacPutAgentOperation
|
|
686
|
+
"@qvac/put-chat-operation-v1": QvacPutChatOperationV1
|
|
687
|
+
"@qvac/put-chat-operation": QvacPutChatOperation
|
|
688
|
+
"@qvac/approval-decision": QvacApprovalDecision
|
|
689
|
+
"@qvac/approval-rule-v1": QvacApprovalRuleV1
|
|
690
|
+
"@qvac/approval-rule": QvacApprovalRule
|
|
691
|
+
"@qvac/put-approval-rule-operation-v1": QvacPutApprovalRuleOperationV1
|
|
692
|
+
"@qvac/put-approval-rule-operation": QvacPutApprovalRuleOperation
|
|
693
|
+
"@qvac/mesh-blind-peer-v1": QvacMeshBlindPeerV1
|
|
694
|
+
"@qvac/mesh-blind-peer": QvacMeshBlindPeer
|
|
695
|
+
"@qvac/autobee-head": QvacAutobeeHead
|
|
696
|
+
"@qvac/mesh-invite-v1": QvacMeshInviteV1
|
|
697
|
+
"@qvac/mesh-invite": QvacMeshInvite
|
|
698
|
+
"@qvac/seed-defaults-operation-v1": QvacSeedDefaultsOperationV1
|
|
699
|
+
"@qvac/seed-defaults-operation": QvacSeedDefaultsOperation
|
|
700
|
+
"@qvac/knowledge-v1": QvacKnowledgeV1
|
|
701
|
+
"@qvac/knowledge": QvacKnowledge
|
|
702
|
+
"@qvac/add-knowledge-operation-v1": QvacAddKnowledgeOperationV1
|
|
703
|
+
"@qvac/add-knowledge-operation": QvacAddKnowledgeOperation
|
|
704
|
+
"@qvac/remove-knowledge-operation-v1": QvacRemoveKnowledgeOperationV1
|
|
705
|
+
"@qvac/remove-knowledge-operation": QvacRemoveKnowledgeOperation
|
|
706
|
+
"@qvac/knowledge-artifact-v1": QvacKnowledgeArtifactV1
|
|
707
|
+
"@qvac/knowledge-artifact": QvacKnowledgeArtifact
|
|
708
|
+
"@qvac/add-knowledge-artifact-operation-v1": QvacAddKnowledgeArtifactOperationV1
|
|
709
|
+
"@qvac/add-knowledge-artifact-operation": QvacAddKnowledgeArtifactOperation
|
|
710
|
+
"@qvac/indexing-state": QvacIndexingState
|
|
711
|
+
"@qvac/indexing-resolution": QvacIndexingResolution
|
|
712
|
+
"@qvac/indexing-status-v1": QvacIndexingStatusV1
|
|
713
|
+
"@qvac/indexing-status": QvacIndexingStatus
|
|
714
|
+
"@qvac/claim-indexing-operation-v1": QvacClaimIndexingOperationV1
|
|
715
|
+
"@qvac/claim-indexing-operation": QvacClaimIndexingOperation
|
|
716
|
+
"@qvac/resolve-indexing-operation-v1": QvacResolveIndexingOperationV1
|
|
717
|
+
"@qvac/resolve-indexing-operation": QvacResolveIndexingOperation
|
|
718
|
+
"@qvac/update-device-profile-operation-v1": QvacUpdateDeviceProfileOperationV1
|
|
719
|
+
"@qvac/update-device-profile-operation": QvacUpdateDeviceProfileOperation
|
|
720
|
+
"@qvac/app-channel": QvacAppChannel
|
|
721
|
+
"@qvac/approval-mode": QvacApprovalMode
|
|
722
|
+
"@qvac/report-device-version-operation-v1": QvacReportDeviceVersionOperationV1
|
|
723
|
+
"@qvac/report-device-version-operation": QvacReportDeviceVersionOperation
|
|
724
|
+
"@qvac/tool-configs-v1": QvacToolConfigsV1
|
|
725
|
+
"@qvac/tool-configs": QvacToolConfigs
|
|
726
|
+
"@qvac/put-tool-configs-operation-v1": QvacPutToolConfigsOperationV1
|
|
727
|
+
"@qvac/put-tool-configs-operation": QvacPutToolConfigsOperation
|
|
728
|
+
"@qvac/tool-decision": QvacToolDecision
|
|
729
|
+
"@qvac/tool-activity-v1": QvacToolActivityV1
|
|
730
|
+
"@qvac/tool-activity": QvacToolActivity
|
|
731
|
+
"@qvac/append-tool-activity-operation-v1": QvacAppendToolActivityOperationV1
|
|
732
|
+
"@qvac/append-tool-activity-operation": QvacAppendToolActivityOperation
|
|
733
|
+
"@qvac/tool-activity-counter-v1": QvacToolActivityCounterV1
|
|
734
|
+
"@qvac/tool-activity-counter": QvacToolActivityCounter
|
|
735
|
+
"@qvac/tool-report-entry": QvacToolReportEntry
|
|
736
|
+
"@qvac/writer-activity-v1": QvacWriterActivityV1
|
|
737
|
+
"@qvac/writer-activity": QvacWriterActivity
|
|
738
|
+
"@qvac/device-attestation-v1": QvacDeviceAttestationV1
|
|
739
|
+
"@qvac/device-attestation": QvacDeviceAttestation
|
|
740
|
+
"@qvac/member-v1": QvacMemberV1
|
|
741
|
+
"@qvac/member": QvacMember
|
|
742
|
+
"@qvac/mint-member-operation-v1": QvacMintMemberOperationV1
|
|
743
|
+
"@qvac/mint-member-operation": QvacMintMemberOperation
|
|
744
|
+
"@qvac/update-member-operation-v1": QvacUpdateMemberOperationV1
|
|
745
|
+
"@qvac/update-member-operation": QvacUpdateMemberOperation
|
|
746
|
+
"@qvac/attest-member-device-operation-v1": QvacAttestMemberDeviceOperationV1
|
|
747
|
+
"@qvac/attest-member-device-operation": QvacAttestMemberDeviceOperation
|
|
748
|
+
"@qvac/chunk-content-compaction-v1": QvacChunkContentCompactionV1
|
|
749
|
+
"@qvac/chunk-content-compaction": QvacChunkContentCompaction
|
|
750
|
+
"@qvac/chat-group-v1": QvacChatGroupV1
|
|
751
|
+
"@qvac/chat-group": QvacChatGroup
|
|
752
|
+
"@qvac/put-chat-group-operation-v1": QvacPutChatGroupOperationV1
|
|
753
|
+
"@qvac/put-chat-group-operation": QvacPutChatGroupOperation
|
|
754
|
+
}
|