@swarmvaultai/engine 0.1.28 → 0.1.29
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/README.md +2 -1
- package/dist/chunk-IHMJCCXR.js +1146 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +531 -103
- package/dist/registry-5SYH3Y3U.js +12 -0
- package/dist/viewer/assets/index-Csm8eB3P.js +331 -0
- package/dist/viewer/assets/index-DUJ6MWHL.css +1 -0
- package/dist/viewer/index.html +2 -2
- package/dist/viewer/lib.js +178 -0
- package/package.json +5 -3
- package/dist/viewer/assets/index-C7PCTMog.js +0 -330
- package/dist/viewer/assets/index-DiMCbjBi.css +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ type PageStatus = "draft" | "candidate" | "active" | "archived";
|
|
|
54
54
|
type PageManager = "system" | "human";
|
|
55
55
|
type ApprovalEntryStatus = "pending" | "accepted" | "rejected";
|
|
56
56
|
type ApprovalChangeType = "create" | "update" | "delete" | "promote";
|
|
57
|
-
type SourceKind = "markdown" | "text" | "pdf" | "image" | "html" | "binary" | "code";
|
|
57
|
+
type SourceKind = "markdown" | "text" | "pdf" | "image" | "html" | "docx" | "binary" | "code";
|
|
58
58
|
type SourceCaptureType = "arxiv" | "doi" | "tweet" | "article" | "url";
|
|
59
59
|
type SourceClass = "first_party" | "third_party" | "resource" | "generated";
|
|
60
60
|
type CodeLanguage = "javascript" | "jsx" | "typescript" | "tsx" | "python" | "go" | "rust" | "java" | "csharp" | "c" | "cpp" | "php" | "ruby" | "powershell";
|
|
@@ -224,7 +224,7 @@ interface SourceAttachment {
|
|
|
224
224
|
mimeType: string;
|
|
225
225
|
originalPath?: string;
|
|
226
226
|
}
|
|
227
|
-
type ExtractionKind = "plain_text" | "html_readability" | "pdf_text" | "image_vision";
|
|
227
|
+
type ExtractionKind = "plain_text" | "html_readability" | "pdf_text" | "docx_text" | "image_vision";
|
|
228
228
|
interface ExtractionTerm {
|
|
229
229
|
name: string;
|
|
230
230
|
description: string;
|