@h-rig/standard-plugin 0.0.6-alpha.142 → 0.0.6-alpha.143
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/src/bundle.d.ts +6 -5
- package/dist/src/bundle.js +1693 -1300
- package/dist/src/cli-surface.d.ts +4 -0
- package/dist/src/cli-surface.js +21 -0
- package/dist/src/drift/metadata.d.ts +13 -0
- package/dist/src/drift/metadata.js +33 -0
- package/dist/src/drift/plugin.d.ts +4 -14
- package/dist/src/drift/plugin.js +4 -5
- package/dist/src/github-issues-source.js +52 -20
- package/dist/src/index.d.ts +0 -2
- package/dist/src/index.js +1657 -1414
- package/dist/src/lifecycle-closeout.d.ts +2 -0
- package/dist/src/lifecycle-closeout.js +6 -0
- package/dist/src/plugin.d.ts +8 -11
- package/dist/src/plugin.js +1657 -1397
- package/dist/src/product-entrypoint.d.ts +11 -0
- package/dist/src/product-entrypoint.js +101 -0
- package/dist/src/run-worker-panels.d.ts +15 -0
- package/dist/src/run-worker-panels.js +53 -0
- package/package.json +24 -8
package/dist/src/plugin.d.ts
CHANGED
|
@@ -1,26 +1,23 @@
|
|
|
1
|
-
import { type RigPluginWithRuntime } from "@rig/core";
|
|
1
|
+
import { type RigPluginWithRuntime } from "@rig/core/config";
|
|
2
2
|
import { createEnvGitHubCredentialProvider, createStateGitHubCredentialProvider, createGitHubIssuesTaskSource, type GitHubCredentialProvider, type GitHubIssuesOptions } from "./github-issues-source";
|
|
3
3
|
import { createFilesTaskSource } from "./files-source";
|
|
4
|
-
import { type DocsDriftPluginOptions } from "./drift/
|
|
4
|
+
import { type DocsDriftPluginOptions } from "./drift/metadata";
|
|
5
5
|
export { createGitHubIssuesTaskSource, createEnvGitHubCredentialProvider, createStateGitHubCredentialProvider, createFilesTaskSource };
|
|
6
|
-
export {
|
|
7
|
-
export { detectDrift, detectDeletedReferences, detectStaleAnchors } from "./drift/detect";
|
|
8
|
-
export { extractDriftReferences } from "./drift/extract-refs";
|
|
9
|
-
export { makeDriftGit } from "./drift/git-adapter";
|
|
10
|
-
export { judgeDocumentationDrift } from "./drift/judge";
|
|
6
|
+
export { DOCS_DRIFT_CAPABILITY_ID, DOCS_DRIFT_CLI_COMMAND, DOCS_DRIFT_CLI_ID, DOCS_DRIFT_STAGE_ID, DOCS_DRIFT_STAGE_MUTATION, DOCS_DRIFT_VALIDATOR, DOCS_DRIFT_VALIDATOR_ID } from "./drift/metadata";
|
|
11
7
|
export type { DriftReference, DriftReferenceKind } from "./drift/extract-refs";
|
|
12
8
|
export type { DriftGit } from "./drift/git-adapter";
|
|
13
9
|
export type { DriftJudgeInput, DriftJudgeMismatch, DriftJudgeProvider } from "./drift/judge";
|
|
14
10
|
export type { GitHubIssuesOptions } from "./github-issues-source";
|
|
15
11
|
export type { FilesTaskSourceOptions } from "./files-source";
|
|
16
|
-
export type { DocsDriftPluginOptions } from "./drift/
|
|
12
|
+
export type { DocsDriftPluginOptions } from "./drift/metadata";
|
|
17
13
|
export declare const DOCS_HEALTH_PANEL_ID = "docs-health";
|
|
18
|
-
export interface
|
|
14
|
+
export interface StandardTaskSourcesPluginOptions {
|
|
19
15
|
githubCredentialProvider?: GitHubCredentialProvider;
|
|
20
16
|
githubWorkspaceId?: string;
|
|
21
17
|
githubUserId?: string;
|
|
22
18
|
githubSpawn?: GitHubIssuesOptions["spawn"];
|
|
23
19
|
onGitHubTaskChanged?: GitHubIssuesOptions["onTaskChanged"];
|
|
24
|
-
drift?: DocsDriftPluginOptions;
|
|
25
20
|
}
|
|
26
|
-
export
|
|
21
|
+
export declare function createStandardDocsDriftPlugin(opts?: DocsDriftPluginOptions): RigPluginWithRuntime;
|
|
22
|
+
export declare function createStandardProductEntrypointPlugin(): RigPluginWithRuntime;
|
|
23
|
+
export declare function createStandardTaskSourcesPlugin(opts?: StandardTaskSourcesPluginOptions): RigPluginWithRuntime;
|