@avallon-labs/sdk 27.4.0-staging.778 → 27.5.0-staging.779

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.d.ts CHANGED
@@ -508,6 +508,8 @@ type ArtifactDetailData = {
508
508
  created_at_document: string | null;
509
509
  updated_at: string;
510
510
  content_md: string | null;
511
+ /** Parsed content annotated with [chunk_id=...] markers, always included when the artifact has parsed chunks. Chunk IDs are stable citation anchors usable to attribute extracted values to their source location. Null when the artifact has no parsed chunks. */
512
+ content_with_chunkids_md: string | null;
511
513
  };
512
514
 
513
515
  /**
@@ -5880,7 +5882,9 @@ declare const useListArtifacts: <TError = ErrorType<ErrorResponse>>(params?: Lis
5880
5882
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
5881
5883
  };
5882
5884
  /**
5883
- * Retrieve a single artifact by ID, including its metadata, file URL, and extracted content.
5885
+ * Retrieve a single artifact by ID, including its metadata, file URL, extracted content, and chunk-annotated content.
5886
+
5887
+ The response always includes `content_with_chunkids_md`: the parsed content annotated with `[chunk_id=...]` markers when the artifact has parsed chunks. Chunk IDs are stable citation anchors — cite them to attribute extracted values to their source location.
5884
5888
  * @summary Get artifact
5885
5889
  */
5886
5890
  declare const getGetArtifactUrl: (id: string) => string;