@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.js
CHANGED
|
@@ -1827,7 +1827,7 @@ var CaseEvidenceSourceSchema = import_zod18.z.object({
|
|
|
1827
1827
|
page: import_zod18.z.number().optional(),
|
|
1828
1828
|
fieldPath: import_zod18.z.string().optional(),
|
|
1829
1829
|
text: import_zod18.z.string().describe("Source text available for span validation and citation"),
|
|
1830
|
-
metadata: import_zod18.z.record(import_zod18.z.string()).optional()
|
|
1830
|
+
metadata: import_zod18.z.record(import_zod18.z.string(), import_zod18.z.string()).optional()
|
|
1831
1831
|
});
|
|
1832
1832
|
var CaseCitationSchema = import_zod18.z.object({
|
|
1833
1833
|
sourceId: import_zod18.z.string(),
|
|
@@ -2204,7 +2204,7 @@ var SourceSpanSchema = import_zod20.z.object({
|
|
|
2204
2204
|
formNumber: import_zod20.z.string().optional(),
|
|
2205
2205
|
bbox: import_zod20.z.array(SourceSpanBBoxSchema).optional(),
|
|
2206
2206
|
location: SourceSpanLocationSchema.optional(),
|
|
2207
|
-
metadata: import_zod20.z.record(import_zod20.z.string()).optional()
|
|
2207
|
+
metadata: import_zod20.z.record(import_zod20.z.string(), import_zod20.z.string()).optional()
|
|
2208
2208
|
});
|
|
2209
2209
|
var SourceSpanRefSchema = import_zod20.z.object({
|
|
2210
2210
|
sourceSpanId: import_zod20.z.string().min(1),
|
|
@@ -2222,7 +2222,7 @@ var SourceChunkSchema = import_zod20.z.object({
|
|
|
2222
2222
|
textHash: import_zod20.z.string().min(1),
|
|
2223
2223
|
pageStart: import_zod20.z.number().int().positive().optional(),
|
|
2224
2224
|
pageEnd: import_zod20.z.number().int().positive().optional(),
|
|
2225
|
-
metadata: import_zod20.z.record(import_zod20.z.string()).default({})
|
|
2225
|
+
metadata: import_zod20.z.record(import_zod20.z.string(), import_zod20.z.string()).default({})
|
|
2226
2226
|
});
|
|
2227
2227
|
|
|
2228
2228
|
// src/source/ids.ts
|