@claritylabs/cl-sdk 1.0.2 → 1.0.3
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/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/storage-sqlite.js +2 -2
- package/dist/storage-sqlite.js.map +1 -1
- package/dist/storage-sqlite.mjs +2 -2
- package/dist/storage-sqlite.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1496,7 +1496,7 @@ var CaseEvidenceSourceSchema = z18.object({
|
|
|
1496
1496
|
page: z18.number().optional(),
|
|
1497
1497
|
fieldPath: z18.string().optional(),
|
|
1498
1498
|
text: z18.string().describe("Source text available for span validation and citation"),
|
|
1499
|
-
metadata: z18.record(z18.string()).optional()
|
|
1499
|
+
metadata: z18.record(z18.string(), z18.string()).optional()
|
|
1500
1500
|
});
|
|
1501
1501
|
var CaseCitationSchema = z18.object({
|
|
1502
1502
|
sourceId: z18.string(),
|
|
@@ -1873,7 +1873,7 @@ var SourceSpanSchema = z20.object({
|
|
|
1873
1873
|
formNumber: z20.string().optional(),
|
|
1874
1874
|
bbox: z20.array(SourceSpanBBoxSchema).optional(),
|
|
1875
1875
|
location: SourceSpanLocationSchema.optional(),
|
|
1876
|
-
metadata: z20.record(z20.string()).optional()
|
|
1876
|
+
metadata: z20.record(z20.string(), z20.string()).optional()
|
|
1877
1877
|
});
|
|
1878
1878
|
var SourceSpanRefSchema = z20.object({
|
|
1879
1879
|
sourceSpanId: z20.string().min(1),
|
|
@@ -1891,7 +1891,7 @@ var SourceChunkSchema = z20.object({
|
|
|
1891
1891
|
textHash: z20.string().min(1),
|
|
1892
1892
|
pageStart: z20.number().int().positive().optional(),
|
|
1893
1893
|
pageEnd: z20.number().int().positive().optional(),
|
|
1894
|
-
metadata: z20.record(z20.string()).default({})
|
|
1894
|
+
metadata: z20.record(z20.string(), z20.string()).default({})
|
|
1895
1895
|
});
|
|
1896
1896
|
|
|
1897
1897
|
// src/source/ids.ts
|