@agentskit/doc-bridge 1.11.0 → 1.11.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.
package/dist/index.d.ts CHANGED
@@ -9636,7 +9636,7 @@ declare const chunksFromMarkdown: (property: string, raw: string, sourceUrl: str
9636
9636
  declare const loadFederatedChunks: (root: string, config: DocBridgeConfigV1, options?: FederatedRetrieverOptions) => Promise<DocBridgeRetrievedChunk[]>;
9637
9637
  declare const retrieveHybridChunks: (root: string, config: DocBridgeConfigV1, index: DocBridgeIndexV1, query: string, options?: FederatedRetrieverOptions) => Promise<DocBridgeRetrievedChunk[]>;
9638
9638
 
9639
- declare const PACKAGE_VERSION = "1.11.0";
9639
+ declare const PACKAGE_VERSION = "1.11.1";
9640
9640
 
9641
9641
  type FrontmatterValue = string | boolean | readonly string[];
9642
9642
  type FrontmatterData = Record<string, FrontmatterValue>;
package/dist/index.js CHANGED
@@ -4400,7 +4400,7 @@ var buildLookup = (config, packages, corpus, indexOutFile, humanDocs = {}, root
4400
4400
  };
4401
4401
 
4402
4402
  // src/version.ts
4403
- var PACKAGE_VERSION = "1.11.0";
4403
+ var PACKAGE_VERSION = "1.11.1";
4404
4404
 
4405
4405
  // src/index-builder/capabilities.ts
4406
4406
  var renderCapabilitiesJson = (config, index, paths) => {
@@ -7121,7 +7121,7 @@ var checkIndexReproducibility = (root, indexPath, paths) => {
7121
7121
  const ignored = [];
7122
7122
  for (let index = 0; index + 3 < fields.length; index += 4) {
7123
7123
  const [source, line, pattern, path] = [fields[index], fields[index + 1], fields[index + 2], fields[index + 3]];
7124
- if (!path) continue;
7124
+ if (!path || pattern?.startsWith("!")) continue;
7125
7125
  ignored.push({ path, rule: `${source ?? "?"}:${line ?? "?"}:${pattern ?? "?"}` });
7126
7126
  }
7127
7127
  return { checked: true, ignored: ignored.sort((left, right) => left.path.localeCompare(right.path)) };