@microsoft/rayfin-docs 1.34.0-alpha.1201 → 1.34.0-alpha.1221
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/discovery.d.ts +3 -3
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/discovery.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { DocKind, RayfinDocsManifest } from './types.js';
|
|
2
2
|
export type { DocKind } from './types.js';
|
|
3
3
|
/**
|
|
4
|
-
* A package discovered to declare `rayfinDocs`. Returned by
|
|
5
|
-
*
|
|
4
|
+
* A package discovered to declare `rayfinDocs`. Returned by package
|
|
5
|
+
* discovery for `DocsService` to load.
|
|
6
6
|
*/
|
|
7
7
|
export interface DiscoveredPackage {
|
|
8
8
|
packageName: string;
|
|
@@ -19,7 +19,7 @@ export type TrustPredicate = (packageName: string) => boolean;
|
|
|
19
19
|
/** Default trust predicate. Auto-trusts the Microsoft Rayfin namespace. */
|
|
20
20
|
export declare const defaultTrust: TrustPredicate;
|
|
21
21
|
/**
|
|
22
|
-
* Inputs to
|
|
22
|
+
* Inputs to the package-discovery routine. Callers must choose exactly one
|
|
23
23
|
* discovery source: `candidates` to probe a fixed catalog list,
|
|
24
24
|
* `packageRoots` for explicit workspace package folders, or
|
|
25
25
|
* `scanInstalledPackages: true` to walk all packages under ancestor
|
package/dist/index.d.ts
CHANGED
|
@@ -56,8 +56,7 @@ export declare class DocsService {
|
|
|
56
56
|
* and load each declaring package's docs. If `candidates` is omitted,
|
|
57
57
|
* DocsService probes only Rayfin's known docs package list instead of
|
|
58
58
|
* walking the entire `node_modules` tree. The `from` argument is passed
|
|
59
|
-
* to
|
|
60
|
-
* base.
|
|
59
|
+
* to package discovery and used as the `createRequire` base.
|
|
61
60
|
*/
|
|
62
61
|
discover?: DiscoveryOptions;
|
|
63
62
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rayfin-docs",
|
|
3
|
-
"version": "1.34.0-alpha.
|
|
3
|
+
"version": "1.34.0-alpha.1221",
|
|
4
4
|
"description": "Rayfin docs indexing and search library — used by the MCP server, CLI, and other doc-facing surfaces",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|