@agentskit/doc-bridge 1.5.1 → 1.5.2
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/CHANGELOG.md +6 -0
- package/action.yml +1 -1
- package/dist/cli/program.js +2 -2
- package/dist/cli/program.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/mcpb/manifest.json +1 -1
- package/package.json +1 -1
- package/skills/doc-bridge-handoff/scripts/resolve-handoff.mjs +1 -1
- package/src/safety/repository.ts +1 -1
- package/src/version.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3061,7 +3061,7 @@ type DiscoveryOptions = {
|
|
|
3061
3061
|
};
|
|
3062
3062
|
declare const discoverRepository: (opts?: DiscoveryOptions) => DiscoverySnapshotV1;
|
|
3063
3063
|
|
|
3064
|
-
declare const DEFAULT_SAFETY_EXCLUDES: readonly ["**/.git/**", "**/node_modules/**", "**/dist/**", "**/build/**", "**/coverage/**", "**/.doc-bridge/**", "**/.env", "**/.env.*", "**/*secret*", "**/*credential*", "**/*.pem", "**/*.key"];
|
|
3064
|
+
declare const DEFAULT_SAFETY_EXCLUDES: readonly ["**/.git/**", "**/node_modules/**", "**/dist/**", "**/build/**", "**/coverage/**", "**/.doc-bridge/**", "**/.turbo/**", "**/.env", "**/.env.*", "**/*secret*", "**/*credential*", "**/*.pem", "**/*.key"];
|
|
3065
3065
|
type SafeWalkOptions = {
|
|
3066
3066
|
readonly extensions?: readonly string[];
|
|
3067
3067
|
readonly exclude?: readonly string[];
|
|
@@ -3783,7 +3783,7 @@ declare const chunksFromMarkdown: (property: string, raw: string, sourceUrl: str
|
|
|
3783
3783
|
declare const loadFederatedChunks: (root: string, config: DocBridgeConfigV1, options?: FederatedRetrieverOptions) => Promise<DocBridgeRetrievedChunk[]>;
|
|
3784
3784
|
declare const retrieveHybridChunks: (root: string, config: DocBridgeConfigV1, index: DocBridgeIndexV1, query: string, options?: FederatedRetrieverOptions) => Promise<DocBridgeRetrievedChunk[]>;
|
|
3785
3785
|
|
|
3786
|
-
declare const PACKAGE_VERSION = "1.5.
|
|
3786
|
+
declare const PACKAGE_VERSION = "1.5.2";
|
|
3787
3787
|
|
|
3788
3788
|
type FrontmatterValue = string | boolean | readonly string[];
|
|
3789
3789
|
type FrontmatterData = Record<string, FrontmatterValue>;
|
package/dist/index.js
CHANGED
|
@@ -1853,7 +1853,7 @@ var buildLookup = (config, packages, corpus, indexOutFile, humanDocs = {}, root
|
|
|
1853
1853
|
};
|
|
1854
1854
|
|
|
1855
1855
|
// src/version.ts
|
|
1856
|
-
var PACKAGE_VERSION = "1.5.
|
|
1856
|
+
var PACKAGE_VERSION = "1.5.2";
|
|
1857
1857
|
|
|
1858
1858
|
// src/index-builder/capabilities.ts
|
|
1859
1859
|
var renderCapabilitiesJson = (config, index, paths) => {
|
|
@@ -2575,7 +2575,7 @@ import * as ts from "typescript";
|
|
|
2575
2575
|
import { lstatSync as lstatSync3, readdirSync as readdirSync3, realpathSync as realpathSync6, statSync as statSync3 } from "fs";
|
|
2576
2576
|
import { isAbsolute as isAbsolute4, relative as relative4, resolve as resolve6, sep as sep5 } from "path";
|
|
2577
2577
|
import { minimatch as minimatch4 } from "minimatch";
|
|
2578
|
-
var DEFAULT_SAFETY_EXCLUDES = ["**/.git/**", "**/node_modules/**", "**/dist/**", "**/build/**", "**/coverage/**", "**/.doc-bridge/**", "**/.env", "**/.env.*", "**/*secret*", "**/*credential*", "**/*.pem", "**/*.key"];
|
|
2578
|
+
var DEFAULT_SAFETY_EXCLUDES = ["**/.git/**", "**/node_modules/**", "**/dist/**", "**/build/**", "**/coverage/**", "**/.doc-bridge/**", "**/.turbo/**", "**/.env", "**/.env.*", "**/*secret*", "**/*credential*", "**/*.pem", "**/*.key"];
|
|
2579
2579
|
var containedPath = (root, candidate) => {
|
|
2580
2580
|
const projectRoot = realpathSync6.native(resolve6(root));
|
|
2581
2581
|
const unresolved = resolve6(projectRoot, candidate);
|