@swarmvaultai/engine 0.6.8 → 0.7.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.
Files changed (3) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/dist/index.js +2536 -219
  3. package/package.json +10 -1
package/dist/index.d.ts CHANGED
@@ -60,12 +60,12 @@ type GuidedSourceSessionStatus = "awaiting_input" | "ready_to_stage" | "staged"
60
60
  type VaultProfilePreset = "reader" | "timeline" | "diligence" | "thesis";
61
61
  type VaultDashboardPack = "default" | "reader" | "diligence";
62
62
  type GuidedSessionMode = "insights_only" | "canonical_review";
63
- type SourceKind = "markdown" | "text" | "pdf" | "image" | "html" | "docx" | "epub" | "csv" | "xlsx" | "pptx" | "transcript" | "chat_export" | "email" | "calendar" | "binary" | "code";
63
+ type SourceKind = "markdown" | "text" | "pdf" | "image" | "html" | "docx" | "epub" | "csv" | "xlsx" | "pptx" | "odt" | "odp" | "ods" | "jupyter" | "data" | "bibtex" | "rtf" | "org" | "asciidoc" | "transcript" | "chat_export" | "email" | "calendar" | "binary" | "code";
64
64
  type SourceCaptureType = "arxiv" | "doi" | "tweet" | "article" | "url";
65
65
  type SourceClass = "first_party" | "third_party" | "resource" | "generated";
66
66
  type ManagedSourceKind = "directory" | "file" | "github_repo" | "crawl_url";
67
67
  type ManagedSourceStatus = "ready" | "missing" | "error";
68
- type CodeLanguage = "javascript" | "jsx" | "typescript" | "tsx" | "bash" | "python" | "go" | "rust" | "java" | "kotlin" | "scala" | "dart" | "lua" | "zig" | "csharp" | "c" | "cpp" | "php" | "ruby" | "powershell";
68
+ type CodeLanguage = "javascript" | "jsx" | "typescript" | "tsx" | "bash" | "python" | "go" | "rust" | "java" | "kotlin" | "scala" | "dart" | "lua" | "zig" | "csharp" | "c" | "cpp" | "php" | "ruby" | "powershell" | "swift" | "elixir" | "ocaml" | "objc" | "rescript" | "solidity" | "html" | "css" | "vue";
69
69
  type CodeSymbolKind = "function" | "class" | "interface" | "type_alias" | "enum" | "variable" | "struct" | "trait";
70
70
  type OrchestrationRole = "research" | "audit" | "context" | "safety";
71
71
  declare const webSearchProviderTypeSchema: z.ZodEnum<{
@@ -245,7 +245,7 @@ interface SourceAttachment {
245
245
  mimeType: string;
246
246
  originalPath?: string;
247
247
  }
248
- type ExtractionKind = "plain_text" | "html_readability" | "pdf_text" | "docx_text" | "epub_text" | "csv_text" | "xlsx_text" | "pptx_text" | "transcript_text" | "chat_export_text" | "email_text" | "calendar_text" | "image_vision";
248
+ type ExtractionKind = "plain_text" | "html_readability" | "pdf_text" | "docx_text" | "epub_text" | "csv_text" | "xlsx_text" | "pptx_text" | "odt_text" | "odp_text" | "ods_text" | "jupyter_text" | "structured_data" | "bibtex_text" | "rtf_text" | "org_text" | "asciidoc_text" | "transcript_text" | "chat_export_text" | "email_text" | "calendar_text" | "image_vision";
249
249
  interface ExtractionTerm {
250
250
  name: string;
251
251
  description: string;