plugin-agent-orchestrator 1.0.13 → 1.0.14
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/README.md +16 -291
- package/dist/client/AIEmployeesContext.d.ts +7 -0
- package/dist/client/OrchestratorSettings.d.ts +2 -1
- package/dist/client/index.js +1 -1
- package/dist/client/plugin.d.ts +1 -0
- package/dist/client/skill-hub/components/ExecutionHistory.d.ts +2 -0
- package/dist/client/skill-hub/components/ExecutionProgress.d.ts +20 -0
- package/dist/client/skill-hub/components/GitSkillImport.d.ts +7 -0
- package/dist/client/skill-hub/components/SkillEditor.d.ts +7 -0
- package/dist/client/skill-hub/components/SkillManager.d.ts +2 -0
- package/dist/client/skill-hub/components/SkillMetrics.d.ts +2 -0
- package/dist/client/skill-hub/components/SkillTestPanel.d.ts +7 -0
- package/dist/client/skill-hub/index.d.ts +10 -0
- package/dist/client/skill-hub/locale.d.ts +3 -0
- package/dist/client/skill-hub/tools/InteractionSchemasProvider.d.ts +19 -0
- package/dist/client/skill-hub/tools/SkillHubCard.d.ts +3 -0
- package/dist/client/skill-hub/utils/jsonFields.d.ts +3 -0
- package/dist/externalVersion.js +6 -6
- package/dist/node_modules/adm-zip/LICENSE +21 -0
- package/dist/node_modules/adm-zip/adm-zip.js +1 -0
- package/dist/node_modules/adm-zip/headers/entryHeader.js +377 -0
- package/dist/node_modules/adm-zip/headers/index.js +2 -0
- package/dist/node_modules/adm-zip/headers/mainHeader.js +130 -0
- package/dist/node_modules/adm-zip/methods/deflater.js +33 -0
- package/dist/node_modules/adm-zip/methods/index.js +3 -0
- package/dist/node_modules/adm-zip/methods/inflater.js +34 -0
- package/dist/node_modules/adm-zip/methods/zipcrypto.js +175 -0
- package/dist/node_modules/adm-zip/package.json +1 -0
- package/dist/node_modules/adm-zip/util/constants.js +142 -0
- package/dist/node_modules/adm-zip/util/decoder.js +5 -0
- package/dist/node_modules/adm-zip/util/errors.js +63 -0
- package/dist/node_modules/adm-zip/util/fattr.js +76 -0
- package/dist/node_modules/adm-zip/util/index.js +5 -0
- package/dist/node_modules/adm-zip/util/utils.js +339 -0
- package/dist/node_modules/adm-zip/zipEntry.js +405 -0
- package/dist/node_modules/adm-zip/zipFile.js +446 -0
- package/dist/node_modules/simple-git/dist/cjs/index.js +7399 -0
- package/dist/node_modules/simple-git/dist/esm/index.js +4745 -0
- package/dist/node_modules/simple-git/dist/esm/package.json +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/api.d.ts +13 -0
- package/dist/node_modules/simple-git/dist/src/lib/args/log-format.d.ts +9 -0
- package/dist/node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts +15 -0
- package/dist/node_modules/simple-git/dist/src/lib/errors/git-error.d.ts +30 -0
- package/dist/node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts +7 -0
- package/dist/node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts +32 -0
- package/dist/node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts +12 -0
- package/dist/node_modules/simple-git/dist/src/lib/git-factory.d.ts +15 -0
- package/dist/node_modules/simple-git/dist/src/lib/git-logger.d.ts +21 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-branch-delete.d.ts +5 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-branch.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-commit.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-diff-summary.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-fetch.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-list-log-summary.d.ts +6 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-merge.d.ts +11 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-move.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-pull.d.ts +6 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-push.d.ts +4 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-remote-messages.d.ts +5 -0
- package/dist/node_modules/simple-git/dist/src/lib/parsers/parse-remote-objects.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/abort-plugin.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/block-unsafe-operations-plugin.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/command-config-prefixing-plugin.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/completion-detection.plugin.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/custom-binary.plugin.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/error-detection.plugin.d.ts +7 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/index.d.ts +11 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/plugin-store.d.ts +11 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/progress-monitor-plugin.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/simple-git-plugin.d.ts +48 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/spawn-options-plugin.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/suffix-paths.plugin.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/plugins/timout-plugin.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/BranchDeleteSummary.d.ts +12 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/BranchSummary.d.ts +14 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/CheckIgnore.d.ts +4 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/CleanSummary.d.ts +9 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/ConfigList.d.ts +13 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/DiffSummary.d.ts +10 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/FileStatusSummary.d.ts +9 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/GetRemoteSummary.d.ts +11 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/InitSummary.d.ts +9 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/MergeSummary.d.ts +16 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/PullSummary.d.ts +25 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/StatusSummary.d.ts +19 -0
- package/dist/node_modules/simple-git/dist/src/lib/responses/TagList.d.ts +7 -0
- package/dist/node_modules/simple-git/dist/src/lib/runners/git-executor-chain.d.ts +25 -0
- package/dist/node_modules/simple-git/dist/src/lib/runners/git-executor.d.ts +14 -0
- package/dist/node_modules/simple-git/dist/src/lib/runners/promise-wrapped.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/runners/scheduler.d.ts +11 -0
- package/dist/node_modules/simple-git/dist/src/lib/runners/tasks-pending-queue.d.ts +23 -0
- package/dist/node_modules/simple-git/dist/src/lib/simple-git-api.d.ts +20 -0
- package/dist/node_modules/simple-git/dist/src/lib/task-callback.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/branch.d.ts +7 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/change-working-directory.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/check-ignore.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts +9 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/checkout.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/clean.d.ts +25 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/clone.d.ts +9 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/commit.d.ts +4 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/config.d.ts +8 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/count-objects.d.ts +12 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/diff-name-status.d.ts +12 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/diff.d.ts +5 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/fetch.d.ts +4 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/first-commit.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/grep.d.ts +12 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/hash-object.d.ts +5 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/init.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/log.d.ts +32 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/merge.d.ts +4 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/move.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/pull.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/push.d.ts +9 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/remote.d.ts +8 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/reset.d.ts +11 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/show.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/stash-list.d.ts +4 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/status.d.ts +3 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/sub-module.d.ts +5 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/tag.d.ts +18 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/task.d.ts +14 -0
- package/dist/node_modules/simple-git/dist/src/lib/tasks/version.d.ts +9 -0
- package/dist/node_modules/simple-git/dist/src/lib/types/handlers.d.ts +21 -0
- package/dist/node_modules/simple-git/dist/src/lib/types/index.d.ts +136 -0
- package/dist/node_modules/simple-git/dist/src/lib/types/tasks.d.ts +19 -0
- package/dist/node_modules/simple-git/dist/src/lib/utils/argument-filters.d.ts +14 -0
- package/dist/node_modules/simple-git/dist/src/lib/utils/exit-codes.d.ts +10 -0
- package/dist/node_modules/simple-git/dist/src/lib/utils/git-output-streams.d.ts +7 -0
- package/dist/node_modules/simple-git/dist/src/lib/utils/index.d.ts +8 -0
- package/dist/node_modules/simple-git/dist/src/lib/utils/line-parser.d.ts +15 -0
- package/dist/node_modules/simple-git/dist/src/lib/utils/simple-git-options.d.ts +2 -0
- package/dist/node_modules/simple-git/dist/src/lib/utils/task-options.d.ts +13 -0
- package/dist/node_modules/simple-git/dist/src/lib/utils/task-parser.d.ts +5 -0
- package/dist/node_modules/simple-git/dist/src/lib/utils/util.d.ts +47 -0
- package/dist/node_modules/simple-git/dist/typings/errors.d.ts +5 -0
- package/dist/node_modules/simple-git/dist/typings/index.d.ts +14 -0
- package/dist/node_modules/simple-git/dist/typings/response.d.ts +556 -0
- package/dist/node_modules/simple-git/dist/typings/simple-git.d.ts +1033 -0
- package/dist/node_modules/simple-git/dist/typings/types.d.ts +22 -0
- package/dist/node_modules/simple-git/node_modules/debug/package.json +64 -0
- package/dist/node_modules/simple-git/node_modules/debug/src/browser.js +272 -0
- package/dist/node_modules/simple-git/node_modules/debug/src/common.js +292 -0
- package/dist/node_modules/simple-git/node_modules/debug/src/index.js +10 -0
- package/dist/node_modules/simple-git/node_modules/debug/src/node.js +263 -0
- package/dist/node_modules/simple-git/package.json +1 -0
- package/dist/node_modules/simple-git/promise.js +17 -0
- package/dist/server/collections/agent-execution-spans.d.ts +9 -0
- package/dist/server/collections/agent-execution-spans.js +152 -0
- package/dist/server/collections/orchestrator-config.js +6 -0
- package/dist/server/collections/skill-definitions.d.ts +3 -0
- package/dist/server/collections/skill-definitions.js +158 -0
- package/dist/server/collections/skill-executions.d.ts +3 -0
- package/dist/server/collections/skill-executions.js +123 -0
- package/dist/server/collections/skill-worker-configs.d.ts +3 -0
- package/dist/server/collections/skill-worker-configs.js +115 -0
- package/dist/server/migrations/20260423000000-add-progress-fields.d.ts +4 -0
- package/dist/server/migrations/20260423000000-add-progress-fields.js +69 -0
- package/dist/server/migrations/20260425000000-add-interaction-schema.d.ts +4 -0
- package/dist/server/migrations/20260425000000-add-interaction-schema.js +61 -0
- package/dist/server/migrations/20260427000000-change-packages-to-text.d.ts +4 -0
- package/dist/server/migrations/20260427000000-change-packages-to-text.js +70 -0
- package/dist/server/migrations/20260427000001-change-other-json-to-text.d.ts +4 -0
- package/dist/server/migrations/20260427000001-change-other-json-to-text.js +80 -0
- package/dist/server/migrations/20260429000000-add-llm-fields.js +8 -0
- package/dist/server/migrations/20260429000000-fix-inputargs-json-to-text.d.ts +16 -0
- package/dist/server/migrations/20260429000000-fix-inputargs-json-to-text.js +51 -0
- package/dist/server/migrations/20260503000000-add-orchestrator-trace-fields.d.ts +7 -0
- package/dist/server/migrations/20260503000000-add-orchestrator-trace-fields.js +57 -0
- package/dist/server/plugin.d.ts +3 -0
- package/dist/server/plugin.js +37 -1
- package/dist/server/resources/tracing.js +154 -11
- package/dist/server/services/CodeValidator.d.ts +32 -0
- package/dist/server/services/CodeValidator.js +205 -0
- package/dist/server/services/ExecutionSpanService.d.ts +44 -0
- package/dist/server/services/ExecutionSpanService.js +104 -0
- package/dist/server/services/FileManager.d.ts +28 -0
- package/dist/server/services/FileManager.js +151 -0
- package/dist/server/services/SandboxRunner.d.ts +41 -0
- package/dist/server/services/SandboxRunner.js +167 -0
- package/dist/server/services/SkillManager.d.ts +6 -0
- package/dist/server/services/SkillManager.js +640 -0
- package/dist/server/services/SkillRepositoryService.d.ts +22 -0
- package/dist/server/services/SkillRepositoryService.js +157 -0
- package/dist/server/services/WorkerEnvManager.d.ts +26 -0
- package/dist/server/services/WorkerEnvManager.js +120 -0
- package/dist/server/skill-hub/actions/git-import.d.ts +21 -0
- package/dist/server/skill-hub/actions/git-import.js +413 -0
- package/dist/server/skill-hub/mcp/McpController.d.ts +15 -0
- package/dist/server/skill-hub/mcp/McpController.js +111 -0
- package/dist/server/skill-hub/plugin.d.ts +58 -0
- package/dist/server/skill-hub/plugin.js +694 -0
- package/dist/server/skill-hub/sandbox-config.json +6 -0
- package/dist/server/skill-hub/tasks/SkillExecutionTask.d.ts +14 -0
- package/dist/server/skill-hub/tasks/SkillExecutionTask.js +267 -0
- package/dist/server/skill-hub/utils/json-fields.d.ts +7 -0
- package/dist/server/skill-hub/utils/json-fields.js +88 -0
- package/dist/server/tools/delegate-task.d.ts +4 -0
- package/dist/server/tools/delegate-task.js +606 -104
- package/dist/server/tools/skill-execute.d.ts +36 -0
- package/dist/server/tools/skill-execute.js +167 -0
- package/package.json +3 -1
- package/src/client/AIEmployeeSelect.tsx +1 -3
- package/src/client/AIEmployeesContext.tsx +28 -13
- package/src/client/OrchestratorSettings.tsx +43 -5
- package/src/client/RulesTab.tsx +253 -32
- package/src/client/TracingTab.tsx +277 -213
- package/src/client/plugin.tsx +39 -0
- package/src/client/skill-hub/components/ExecutionHistory.tsx +201 -0
- package/src/client/skill-hub/components/ExecutionProgress.tsx +55 -0
- package/src/client/skill-hub/components/GitSkillImport.tsx +555 -0
- package/src/client/skill-hub/components/SkillEditor.tsx +456 -0
- package/src/client/skill-hub/components/SkillManager.tsx +181 -0
- package/src/client/skill-hub/components/SkillMetrics.tsx +124 -0
- package/src/client/skill-hub/components/SkillTestPanel.tsx +144 -0
- package/src/client/skill-hub/index.tsx +75 -0
- package/src/client/skill-hub/locale.ts +16 -0
- package/src/client/skill-hub/tools/InteractionSchemasProvider.tsx +59 -0
- package/src/client/skill-hub/tools/SkillHubCard.tsx +78 -0
- package/src/client/skill-hub/utils/jsonFields.ts +37 -0
- package/src/server/collections/agent-execution-spans.ts +129 -0
- package/src/server/collections/orchestrator-config.ts +7 -0
- package/src/server/collections/skill-definitions.ts +128 -0
- package/src/server/collections/skill-executions.ts +94 -0
- package/src/server/collections/skill-worker-configs.ts +86 -0
- package/src/server/migrations/20260423000000-add-progress-fields.ts +50 -0
- package/src/server/migrations/20260425000000-add-interaction-schema.ts +35 -0
- package/src/server/migrations/20260427000000-change-packages-to-text.ts +47 -0
- package/src/server/migrations/20260427000001-change-other-json-to-text.ts +57 -0
- package/src/server/migrations/20260429000000-add-llm-fields.ts +9 -0
- package/src/server/migrations/20260429000000-fix-inputargs-json-to-text.ts +38 -0
- package/src/server/migrations/20260503000000-add-orchestrator-trace-fields.ts +32 -0
- package/src/server/plugin.ts +51 -3
- package/src/server/resources/tracing.ts +182 -15
- package/src/server/services/CodeValidator.ts +159 -0
- package/src/server/services/ExecutionSpanService.ts +106 -0
- package/src/server/services/FileManager.ts +144 -0
- package/src/server/services/SandboxRunner.ts +205 -0
- package/src/server/services/SkillManager.ts +623 -0
- package/src/server/services/SkillRepositoryService.ts +142 -0
- package/src/server/services/WorkerEnvManager.ts +113 -0
- package/src/server/skill-hub/actions/git-import.ts +486 -0
- package/src/server/skill-hub/mcp/McpController.ts +86 -0
- package/src/server/skill-hub/plugin.ts +771 -0
- package/src/server/skill-hub/sandbox-config.json +6 -0
- package/src/server/skill-hub/tasks/SkillExecutionTask.ts +297 -0
- package/src/server/skill-hub/utils/json-fields.ts +57 -0
- package/src/server/tools/delegate-task.ts +803 -127
- package/src/server/tools/skill-execute.ts +157 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { SimpleGitTask } from '../types';
|
|
2
|
+
import { GitError } from '../errors/git-error';
|
|
3
|
+
import { OutputLogger } from '../git-logger';
|
|
4
|
+
type AnySimpleGitTask = SimpleGitTask<any>;
|
|
5
|
+
type TaskInProgress = {
|
|
6
|
+
name: string;
|
|
7
|
+
logger: OutputLogger;
|
|
8
|
+
task: AnySimpleGitTask;
|
|
9
|
+
};
|
|
10
|
+
export declare class TasksPendingQueue {
|
|
11
|
+
private logLabel;
|
|
12
|
+
private _queue;
|
|
13
|
+
constructor(logLabel?: string);
|
|
14
|
+
private withProgress;
|
|
15
|
+
private createProgress;
|
|
16
|
+
push(task: AnySimpleGitTask): TaskInProgress;
|
|
17
|
+
fatal(err: GitError): void;
|
|
18
|
+
complete(task: AnySimpleGitTask): void;
|
|
19
|
+
attempt(task: AnySimpleGitTask): TaskInProgress;
|
|
20
|
+
static getName(name?: string): string;
|
|
21
|
+
private static counter;
|
|
22
|
+
}
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { SimpleGitBase } from '../../typings';
|
|
2
|
+
import { outputHandler, SimpleGitExecutor, SimpleGitTask, SimpleGitTaskCallback } from './types';
|
|
3
|
+
export declare class SimpleGitApi implements SimpleGitBase {
|
|
4
|
+
private _executor;
|
|
5
|
+
constructor(_executor: SimpleGitExecutor);
|
|
6
|
+
protected _runTask<T>(task: SimpleGitTask<T>, then?: SimpleGitTaskCallback<T>): any;
|
|
7
|
+
add(files: string | string[]): any;
|
|
8
|
+
cwd(directory: string | {
|
|
9
|
+
path: string;
|
|
10
|
+
root?: boolean;
|
|
11
|
+
}): any;
|
|
12
|
+
hashObject(path: string, write: boolean | unknown): any;
|
|
13
|
+
init(bare?: boolean | unknown): any;
|
|
14
|
+
merge(): any;
|
|
15
|
+
mergeFromTo(remote: string, branch: string): any;
|
|
16
|
+
outputHandler(handler: outputHandler): this;
|
|
17
|
+
push(): any;
|
|
18
|
+
stash(): any;
|
|
19
|
+
status(): any;
|
|
20
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { OptionFlags, Options, StringTask } from '../types';
|
|
2
|
+
export type ApplyOptions = Options & OptionFlags<'--stat' | '--numstat' | '--summary' | '--check' | '--index' | '--intent-to-add' | '--3way' | '--apply' | '--no-add' | '-R' | '--reverse' | '--allow-binary-replacement' | '--binary' | '--reject' | '-z' | '--inaccurate-eof' | '--recount' | '--cached' | '--ignore-space-change' | '--ignore-whitespace' | '--verbose' | '--unsafe-paths'> & OptionFlags<'--whitespace', 'nowarn' | 'warn' | 'fix' | 'error' | 'error-all'> & OptionFlags<'--build-fake-ancestor' | '--exclude' | '--include' | '--directory', string> & OptionFlags<'-p' | '-C', number>;
|
|
3
|
+
export declare function applyPatchTask(patches: string[], customArgs: string[]): StringTask<string>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BranchMultiDeleteResult, BranchSingleDeleteResult, BranchSummary } from '../../../typings';
|
|
2
|
+
import { StringTask } from '../types';
|
|
3
|
+
export declare function containsDeleteBranchCommand(commands: string[]): boolean;
|
|
4
|
+
export declare function branchTask(customArgs: string[]): StringTask<BranchSummary | BranchSingleDeleteResult>;
|
|
5
|
+
export declare function branchLocalTask(): StringTask<BranchSummary>;
|
|
6
|
+
export declare function deleteBranchesTask(branches: string[], forceDelete?: boolean): StringTask<BranchMultiDeleteResult>;
|
|
7
|
+
export declare function deleteBranchTask(branch: string, forceDelete?: boolean): StringTask<BranchSingleDeleteResult>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Maybe, StringTask } from '../types';
|
|
2
|
+
export declare enum CheckRepoActions {
|
|
3
|
+
BARE = "bare",
|
|
4
|
+
IN_TREE = "tree",
|
|
5
|
+
IS_REPO_ROOT = "root"
|
|
6
|
+
}
|
|
7
|
+
export declare function checkIsRepoTask(action: Maybe<CheckRepoActions>): StringTask<boolean>;
|
|
8
|
+
export declare function checkIsRepoRootTask(): StringTask<boolean>;
|
|
9
|
+
export declare function checkIsBareRepoTask(): StringTask<boolean>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { CleanSummary } from '../../../typings';
|
|
2
|
+
import { StringTask } from '../types';
|
|
3
|
+
export declare const CONFIG_ERROR_INTERACTIVE_MODE = "Git clean interactive mode is not supported";
|
|
4
|
+
export declare const CONFIG_ERROR_MODE_REQUIRED = "Git clean mode parameter (\"n\" or \"f\") is required";
|
|
5
|
+
export declare const CONFIG_ERROR_UNKNOWN_OPTION = "Git clean unknown option found in: ";
|
|
6
|
+
/**
|
|
7
|
+
* All supported option switches available for use in a `git.clean` operation
|
|
8
|
+
*/
|
|
9
|
+
export declare enum CleanOptions {
|
|
10
|
+
DRY_RUN = "n",
|
|
11
|
+
FORCE = "f",
|
|
12
|
+
IGNORED_INCLUDED = "x",
|
|
13
|
+
IGNORED_ONLY = "X",
|
|
14
|
+
EXCLUDING = "e",
|
|
15
|
+
QUIET = "q",
|
|
16
|
+
RECURSIVE = "d"
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* The two modes `git.clean` can run in - one of these must be supplied in order
|
|
20
|
+
* for the command to not throw a `TaskConfigurationError`
|
|
21
|
+
*/
|
|
22
|
+
export type CleanMode = CleanOptions.FORCE | CleanOptions.DRY_RUN;
|
|
23
|
+
export declare function cleanWithOptionsTask(mode: CleanMode | string, customArgs: string[]): import("./task").EmptyTask | StringTask<CleanSummary>;
|
|
24
|
+
export declare function cleanTask(mode: CleanMode, customArgs: string[]): StringTask<CleanSummary>;
|
|
25
|
+
export declare function isCleanOptionsArray(input: string[]): input is CleanOptions[];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { EmptyTask } from './task';
|
|
2
|
+
import { OptionFlags, Options, StringTask } from '../types';
|
|
3
|
+
import { SimpleGit } from '../../../typings';
|
|
4
|
+
export type CloneOptions = Options & OptionFlags<'--bare' | '--dissociate' | '--mirror' | '--no-checkout' | '--no-remote-submodules' | '--no-shallow-submodules' | '--no-single-branch' | '--no-tags' | '--remote-submodules' | '--single-branch' | '--shallow-submodules' | '--verbose'> & OptionFlags<'--depth' | '-j' | '--jobs', number> & OptionFlags<'--branch' | '--origin' | '--recurse-submodules' | '--separate-git-dir' | '--shallow-exclude' | '--shallow-since' | '--template', string>;
|
|
5
|
+
type CloneTaskBuilder = (repo: string | undefined, directory: string | undefined, customArgs: string[]) => StringTask<string> | EmptyTask;
|
|
6
|
+
export declare const cloneTask: CloneTaskBuilder;
|
|
7
|
+
export declare const cloneMirrorTask: CloneTaskBuilder;
|
|
8
|
+
export default function (): Pick<SimpleGit, 'clone' | 'mirror'>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { CommitResult, SimpleGit } from '../../../typings';
|
|
2
|
+
import type { StringTask } from '../types';
|
|
3
|
+
export declare function commitTask(message: string[], files: string[], customArgs: string[]): StringTask<CommitResult>;
|
|
4
|
+
export default function (): Pick<SimpleGit, 'commit'>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { SimpleGit } from '../../../typings';
|
|
2
|
+
export declare enum GitConfigScope {
|
|
3
|
+
system = "system",
|
|
4
|
+
global = "global",
|
|
5
|
+
local = "local",
|
|
6
|
+
worktree = "worktree"
|
|
7
|
+
}
|
|
8
|
+
export default function (): Pick<SimpleGit, 'addConfig' | 'getConfig' | 'listConfig'>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { SimpleGit } from '../../../typings';
|
|
2
|
+
export interface CountObjectsResult {
|
|
3
|
+
count: number;
|
|
4
|
+
size: number;
|
|
5
|
+
inPack: number;
|
|
6
|
+
packs: number;
|
|
7
|
+
sizePack: number;
|
|
8
|
+
prunePackable: number;
|
|
9
|
+
garbage: number;
|
|
10
|
+
sizeGarbage: number;
|
|
11
|
+
}
|
|
12
|
+
export default function (): Pick<SimpleGit, 'countObjects'>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare enum DiffNameStatus {
|
|
2
|
+
ADDED = "A",
|
|
3
|
+
COPIED = "C",
|
|
4
|
+
DELETED = "D",
|
|
5
|
+
MODIFIED = "M",
|
|
6
|
+
RENAMED = "R",
|
|
7
|
+
CHANGED = "T",
|
|
8
|
+
UNMERGED = "U",
|
|
9
|
+
UNKNOWN = "X",
|
|
10
|
+
BROKEN = "B"
|
|
11
|
+
}
|
|
12
|
+
export declare function isDiffNameStatus(input: string): input is DiffNameStatus;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { StringTask } from '../types';
|
|
2
|
+
import { DiffResult } from '../../../typings';
|
|
3
|
+
import { EmptyTask } from './task';
|
|
4
|
+
export declare function diffSummaryTask(customArgs: string[]): StringTask<DiffResult> | EmptyTask;
|
|
5
|
+
export declare function validateLogFormatConfig(customArgs: unknown[]): EmptyTask | void;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SimpleGit } from '../../../typings';
|
|
2
|
+
export interface GitGrepQuery extends Iterable<string> {
|
|
3
|
+
/** Adds one or more terms to be grouped as an "and" to any other terms */
|
|
4
|
+
and(...and: string[]): this;
|
|
5
|
+
/** Adds one or more search terms - git.grep will "or" this to other terms */
|
|
6
|
+
param(...param: string[]): this;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Creates a new builder for a `git.grep` query with optional params
|
|
10
|
+
*/
|
|
11
|
+
export declare function grepQueryBuilder(...params: string[]): GitGrepQuery;
|
|
12
|
+
export default function (): Pick<SimpleGit, 'grep'>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { LogResult, Options, SimpleGit } from '../../../typings';
|
|
2
|
+
import { StringTask } from '../types';
|
|
3
|
+
export interface DefaultLogFields {
|
|
4
|
+
hash: string;
|
|
5
|
+
date: string;
|
|
6
|
+
message: string;
|
|
7
|
+
refs: string;
|
|
8
|
+
body: string;
|
|
9
|
+
author_name: string;
|
|
10
|
+
author_email: string;
|
|
11
|
+
}
|
|
12
|
+
export type LogOptions<T = DefaultLogFields> = {
|
|
13
|
+
file?: string;
|
|
14
|
+
format?: T;
|
|
15
|
+
from?: string;
|
|
16
|
+
mailMap?: boolean;
|
|
17
|
+
maxCount?: number;
|
|
18
|
+
multiLine?: boolean;
|
|
19
|
+
splitter?: string;
|
|
20
|
+
strictDate?: boolean;
|
|
21
|
+
symmetric?: boolean;
|
|
22
|
+
to?: string;
|
|
23
|
+
};
|
|
24
|
+
interface ParsedLogOptions {
|
|
25
|
+
fields: string[];
|
|
26
|
+
splitter: string;
|
|
27
|
+
commands: string[];
|
|
28
|
+
}
|
|
29
|
+
export declare function parseLogOptions<T extends Options>(opt?: Options | LogOptions<T>, customArgs?: string[]): ParsedLogOptions;
|
|
30
|
+
export declare function logTask<T>(splitter: string, fields: string[], customArgs: string[]): StringTask<LogResult<T>>;
|
|
31
|
+
export default function (): Pick<SimpleGit, 'log'>;
|
|
32
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PushResult } from '../../../typings';
|
|
2
|
+
import { StringTask } from '../types';
|
|
3
|
+
type PushRef = {
|
|
4
|
+
remote?: string;
|
|
5
|
+
branch?: string;
|
|
6
|
+
};
|
|
7
|
+
export declare function pushTagsTask(ref: PushRef | undefined, customArgs: string[]): StringTask<PushResult>;
|
|
8
|
+
export declare function pushTask(ref: PushRef | undefined, customArgs: string[]): StringTask<PushResult>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type RemoteWithoutRefs, type RemoteWithRefs } from '../responses/GetRemoteSummary';
|
|
2
|
+
import type { StringTask } from '../types';
|
|
3
|
+
export declare function addRemoteTask(remoteName: string, remoteRepo: string, customArgs: string[]): StringTask<string>;
|
|
4
|
+
export declare function getRemotesTask(verbose: true): StringTask<RemoteWithRefs[]>;
|
|
5
|
+
export declare function getRemotesTask(verbose: false): StringTask<RemoteWithoutRefs[]>;
|
|
6
|
+
export declare function listRemotesTask(customArgs: string[]): StringTask<string>;
|
|
7
|
+
export declare function remoteTask(customArgs: string[]): StringTask<string>;
|
|
8
|
+
export declare function removeRemoteTask(remoteName: string): StringTask<string>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Maybe, OptionFlags, Options } from '../types';
|
|
2
|
+
export declare enum ResetMode {
|
|
3
|
+
MIXED = "mixed",
|
|
4
|
+
SOFT = "soft",
|
|
5
|
+
HARD = "hard",
|
|
6
|
+
MERGE = "merge",
|
|
7
|
+
KEEP = "keep"
|
|
8
|
+
}
|
|
9
|
+
export type ResetOptions = Options & OptionFlags<'-q' | '--quiet' | '--no-quiet' | '--pathspec-from-nul'> & OptionFlags<'--pathspec-from-file', string>;
|
|
10
|
+
export declare function resetTask(mode: Maybe<ResetMode>, customArgs: string[]): import("../types").StringTask<string>;
|
|
11
|
+
export declare function getResetMode(mode: ResetMode | unknown): Maybe<ResetMode>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { StringTask } from '../types';
|
|
2
|
+
export declare function addSubModuleTask(repo: string, path: string): StringTask<string>;
|
|
3
|
+
export declare function initSubModuleTask(customArgs: string[]): StringTask<string>;
|
|
4
|
+
export declare function subModuleTask(customArgs: string[]): StringTask<string>;
|
|
5
|
+
export declare function updateSubModuleTask(customArgs: string[]): StringTask<string>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { TagResult } from '../../../typings';
|
|
2
|
+
import { StringTask } from '../types';
|
|
3
|
+
/**
|
|
4
|
+
* Task used by `git.tags`
|
|
5
|
+
*/
|
|
6
|
+
export declare function tagListTask(customArgs?: string[]): StringTask<TagResult>;
|
|
7
|
+
/**
|
|
8
|
+
* Task used by `git.addTag`
|
|
9
|
+
*/
|
|
10
|
+
export declare function addTagTask(name: string): StringTask<{
|
|
11
|
+
name: string;
|
|
12
|
+
}>;
|
|
13
|
+
/**
|
|
14
|
+
* Task used by `git.addTag`
|
|
15
|
+
*/
|
|
16
|
+
export declare function addAnnotatedTagTask(name: string, tagMessage: string): StringTask<{
|
|
17
|
+
name: string;
|
|
18
|
+
}>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { BufferTask, EmptyTaskParser, SimpleGitTask, StringTask } from '../types';
|
|
2
|
+
export declare const EMPTY_COMMANDS: [];
|
|
3
|
+
export type EmptyTask = {
|
|
4
|
+
commands: typeof EMPTY_COMMANDS;
|
|
5
|
+
format: 'empty';
|
|
6
|
+
parser: EmptyTaskParser;
|
|
7
|
+
onError?: undefined;
|
|
8
|
+
};
|
|
9
|
+
export declare function adhocExecTask(parser: EmptyTaskParser): EmptyTask;
|
|
10
|
+
export declare function configurationErrorTask(error: Error | string): EmptyTask;
|
|
11
|
+
export declare function straightThroughStringTask(commands: string[], trimmed?: boolean): StringTask<string>;
|
|
12
|
+
export declare function straightThroughBufferTask(commands: string[]): BufferTask<Buffer>;
|
|
13
|
+
export declare function isBufferTask<R>(task: SimpleGitTask<R>): task is BufferTask<R>;
|
|
14
|
+
export declare function isEmptyTask<R>(task: SimpleGitTask<R>): task is EmptyTask;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { GitError } from '../errors/git-error';
|
|
2
|
+
/**
|
|
3
|
+
* The node-style callback to a task accepts either two arguments with the first as a null
|
|
4
|
+
* and the second as the data, or just one argument which is an error.
|
|
5
|
+
*/
|
|
6
|
+
export type SimpleGitTaskCallback<T = string, E extends GitError = GitError> = (err: E | null, data: T) => void;
|
|
7
|
+
/**
|
|
8
|
+
* The event data emitted to the progress handler whenever progress detail is received.
|
|
9
|
+
*/
|
|
10
|
+
export interface SimpleGitProgressEvent {
|
|
11
|
+
/** The underlying method called - push, pull etc */
|
|
12
|
+
method: string;
|
|
13
|
+
/** The type of progress being reported, note that any one task may emit many stages - for example `git clone` emits both `receiving` and `resolving` */
|
|
14
|
+
stage: 'compressing' | 'counting' | 'receiving' | 'resolving' | 'unknown' | 'writing' | string;
|
|
15
|
+
/** The percent progressed as a number 0 - 100 */
|
|
16
|
+
progress: number;
|
|
17
|
+
/** The number of items processed so far */
|
|
18
|
+
processed: number;
|
|
19
|
+
/** The total number of items to be processed */
|
|
20
|
+
total: number;
|
|
21
|
+
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import type { SpawnOptions } from 'child_process';
|
|
2
|
+
import type { SimpleGitTask } from './tasks';
|
|
3
|
+
import type { SimpleGitProgressEvent } from './handlers';
|
|
4
|
+
import { VulnerabilityCategoryFlags } from '@simple-git/argv-parser';
|
|
5
|
+
export * from './handlers';
|
|
6
|
+
export * from './tasks';
|
|
7
|
+
/**
|
|
8
|
+
* Most tasks accept custom options as an array of strings as well as the
|
|
9
|
+
* options object. Unless the task is explicitly documented as such, the
|
|
10
|
+
* tasks will not accept both formats at the same time, preferring whichever
|
|
11
|
+
* appears last in the arguments.
|
|
12
|
+
*/
|
|
13
|
+
export type TaskOptions<O extends Options = Options> = string[] | O;
|
|
14
|
+
/**
|
|
15
|
+
* Options supplied in most tasks as an optional trailing object
|
|
16
|
+
*/
|
|
17
|
+
export type OptionsValues = null | string | number | (string | number)[];
|
|
18
|
+
export type Options = Record<string, OptionsValues>;
|
|
19
|
+
export type OptionFlags<FLAGS extends string, VALUE = null> = Partial<Record<FLAGS, VALUE>>;
|
|
20
|
+
/**
|
|
21
|
+
* A function called by the executor immediately after creating a child
|
|
22
|
+
* process. Allows the calling application to implement custom handling of
|
|
23
|
+
* the incoming stream of data from the `git`.
|
|
24
|
+
*/
|
|
25
|
+
export type outputHandler = (command: string, stdout: NodeJS.ReadableStream, stderr: NodeJS.ReadableStream, args: string[]) => void;
|
|
26
|
+
/**
|
|
27
|
+
* Environment variables to be passed into the child process.
|
|
28
|
+
*/
|
|
29
|
+
export type GitExecutorEnv = NodeJS.ProcessEnv | undefined;
|
|
30
|
+
/**
|
|
31
|
+
* Public interface of the Executor
|
|
32
|
+
*/
|
|
33
|
+
export interface SimpleGitExecutor {
|
|
34
|
+
env: GitExecutorEnv;
|
|
35
|
+
outputHandler?: outputHandler;
|
|
36
|
+
cwd: string;
|
|
37
|
+
chain(): SimpleGitExecutor;
|
|
38
|
+
push<R>(task: SimpleGitTask<R>): Promise<R>;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* The resulting output from running the git child process
|
|
42
|
+
*/
|
|
43
|
+
export interface GitExecutorResult {
|
|
44
|
+
stdOut: Buffer[];
|
|
45
|
+
stdErr: Buffer[];
|
|
46
|
+
exitCode: number;
|
|
47
|
+
rejection: Maybe<Error>;
|
|
48
|
+
}
|
|
49
|
+
export interface SimpleGitPluginConfig {
|
|
50
|
+
abort: AbortSignal;
|
|
51
|
+
/**
|
|
52
|
+
* Name of the binary the child processes will spawn - defaults to `git`,
|
|
53
|
+
* supply as a tuple to enable the use of platforms that require `git` to be
|
|
54
|
+
* called through an alternative binary (eg: `wsl git ...`).
|
|
55
|
+
* Note: commands supplied in this way support a restricted set of characters
|
|
56
|
+
* and should not be used as a way to supply arbitrary config arguments etc.
|
|
57
|
+
*/
|
|
58
|
+
binary: string | [string] | [string, string];
|
|
59
|
+
/**
|
|
60
|
+
* Configures the events that should be used to determine when the unederlying child process has
|
|
61
|
+
* been terminated.
|
|
62
|
+
*
|
|
63
|
+
* Version 2 will default to use `onClose=true, onExit=50` to mean the `close` event will be
|
|
64
|
+
* used to immediately treat the child process as closed and start using the data from `stdOut`
|
|
65
|
+
* / `stdErr`, whereas the `exit` event will wait `50ms` before treating the child process
|
|
66
|
+
* as closed.
|
|
67
|
+
*
|
|
68
|
+
* This will be changed in version 3 to use `onClose=true, onExit=false` so that only the
|
|
69
|
+
* close event is used to determine the termination of the process.
|
|
70
|
+
*/
|
|
71
|
+
completion: {
|
|
72
|
+
onClose?: boolean | number;
|
|
73
|
+
onExit?: boolean | number;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Configures the content of errors thrown by the `simple-git` instance for each task
|
|
77
|
+
*/
|
|
78
|
+
errors(error: Buffer | Error | undefined, result: Omit<GitExecutorResult, 'rejection'>): Buffer | Error | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* Handler to be called with progress events emitted through the progress plugin
|
|
81
|
+
*/
|
|
82
|
+
progress(data: SimpleGitProgressEvent): void;
|
|
83
|
+
/**
|
|
84
|
+
* Configuration for the `timeoutPlugin`
|
|
85
|
+
*/
|
|
86
|
+
timeout: {
|
|
87
|
+
/**
|
|
88
|
+
* The number of milliseconds to wait after spawning the process / receiving
|
|
89
|
+
* content on the stdOut/stdErr streams before forcibly closing the git process.
|
|
90
|
+
*/
|
|
91
|
+
block: number;
|
|
92
|
+
/**
|
|
93
|
+
* Reset timeout plugin after receiving data on `stdErr` - set to `false` to ignore
|
|
94
|
+
* `stdErr` content when determining whether to kill the process (defaults to `true`).
|
|
95
|
+
*/
|
|
96
|
+
stdErr?: boolean;
|
|
97
|
+
/**
|
|
98
|
+
* Reset timeout plugin after receiving data on `stdOut` - set to `false` to ignore
|
|
99
|
+
* `stdOut` content when determining whether to kill the process (defaults to `true`).
|
|
100
|
+
*/
|
|
101
|
+
stdOut?: boolean;
|
|
102
|
+
};
|
|
103
|
+
spawnOptions: Pick<SpawnOptions, 'uid' | 'gid'>;
|
|
104
|
+
unsafe: Partial<VulnerabilityCategoryFlags & {
|
|
105
|
+
/**
|
|
106
|
+
* Allows potentially unsafe values to be supplied in the `binary` configuration option and
|
|
107
|
+
* `git.customBinary()` method call.
|
|
108
|
+
*/
|
|
109
|
+
allowUnsafeCustomBinary: boolean;
|
|
110
|
+
}>;
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Optional configuration settings to be passed to the `simpleGit`
|
|
114
|
+
* builder.
|
|
115
|
+
*/
|
|
116
|
+
export interface SimpleGitOptions extends Partial<SimpleGitPluginConfig> {
|
|
117
|
+
/**
|
|
118
|
+
* Base directory for all tasks run through this `simple-git` instance
|
|
119
|
+
*/
|
|
120
|
+
baseDir: string;
|
|
121
|
+
/**
|
|
122
|
+
* Limit for the number of child processes that will be spawned concurrently from a `simple-git` instance
|
|
123
|
+
*/
|
|
124
|
+
maxConcurrentProcesses: number;
|
|
125
|
+
/**
|
|
126
|
+
* Per-command configuration parameters to be passed with the `-c` switch to `git`
|
|
127
|
+
*/
|
|
128
|
+
config: string[];
|
|
129
|
+
/**
|
|
130
|
+
* Enable trimming of trailing white-space in `git.raw`
|
|
131
|
+
*/
|
|
132
|
+
trimmed: boolean;
|
|
133
|
+
}
|
|
134
|
+
export type Maybe<T> = T | undefined;
|
|
135
|
+
export type MaybeArray<T> = T | T[];
|
|
136
|
+
export type Primitives = string | number | boolean;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { GitExecutorResult, SimpleGitExecutor } from './index';
|
|
2
|
+
import { EmptyTask } from '../tasks/task';
|
|
3
|
+
export type TaskResponseFormat = Buffer | string;
|
|
4
|
+
export interface TaskParser<INPUT extends TaskResponseFormat, RESPONSE> {
|
|
5
|
+
(stdOut: INPUT, stdErr: INPUT): RESPONSE;
|
|
6
|
+
}
|
|
7
|
+
export interface EmptyTaskParser {
|
|
8
|
+
(executor: SimpleGitExecutor): void;
|
|
9
|
+
}
|
|
10
|
+
export interface SimpleGitTaskConfiguration<RESPONSE, FORMAT, INPUT extends TaskResponseFormat> {
|
|
11
|
+
commands: string[];
|
|
12
|
+
format: FORMAT;
|
|
13
|
+
parser: TaskParser<INPUT, RESPONSE>;
|
|
14
|
+
onError?: (result: GitExecutorResult, error: Error, done: (result: Buffer | Buffer[]) => void, fail: (error: string | Error) => void) => void;
|
|
15
|
+
}
|
|
16
|
+
export type StringTask<R> = SimpleGitTaskConfiguration<R, 'utf-8', string>;
|
|
17
|
+
export type BufferTask<R> = SimpleGitTaskConfiguration<R, 'buffer', Buffer>;
|
|
18
|
+
export type RunnableTask<R> = StringTask<R> | BufferTask<R>;
|
|
19
|
+
export type SimpleGitTask<R> = RunnableTask<R> | EmptyTask;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { Options, Primitives } from '../types';
|
|
2
|
+
export type ArgumentFilterPredicate<T> = (input: T | unknown) => input is T;
|
|
3
|
+
export declare function filterType<T, K>(input: K, filter: ArgumentFilterPredicate<T>): K extends T ? T : undefined;
|
|
4
|
+
export declare function filterType<T, K>(input: K, filter: ArgumentFilterPredicate<T>, def: T): T;
|
|
5
|
+
export declare const filterArray: ArgumentFilterPredicate<Array<unknown>>;
|
|
6
|
+
export declare function filterPrimitives(input: unknown, omit?: Array<'boolean' | 'string' | 'number'>): input is Primitives;
|
|
7
|
+
export declare const filterNumber: ArgumentFilterPredicate<number>;
|
|
8
|
+
export declare const filterString: ArgumentFilterPredicate<string>;
|
|
9
|
+
export declare const filterStringOrStringArray: ArgumentFilterPredicate<string | string[]>;
|
|
10
|
+
export declare function filterPlainObject<T extends Options>(input: T | unknown): input is T;
|
|
11
|
+
export declare function filterFunction(input: unknown): input is (...args: unknown[]) => unknown;
|
|
12
|
+
export declare const filterHasLength: ArgumentFilterPredicate<{
|
|
13
|
+
length: number;
|
|
14
|
+
}>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './argument-filters';
|
|
2
|
+
export * from './exit-codes';
|
|
3
|
+
export * from './git-output-streams';
|
|
4
|
+
export * from './line-parser';
|
|
5
|
+
export * from './simple-git-options';
|
|
6
|
+
export * from './task-options';
|
|
7
|
+
export * from './task-parser';
|
|
8
|
+
export * from './util';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare class LineParser<T> {
|
|
2
|
+
protected matches: string[];
|
|
3
|
+
protected useMatches: (target: T, match: string[]) => boolean | void;
|
|
4
|
+
private _regExp;
|
|
5
|
+
constructor(regExp: RegExp | RegExp[], useMatches?: (target: T, match: string[]) => boolean | void);
|
|
6
|
+
parse: (line: (offset: number) => string | undefined, target: T) => boolean;
|
|
7
|
+
protected resetMatches(): void;
|
|
8
|
+
protected prepareMatches(): string[];
|
|
9
|
+
protected addMatch(reg: RegExp, index: number, line?: string): boolean;
|
|
10
|
+
protected pushMatch(_index: number, matched: string[]): void;
|
|
11
|
+
}
|
|
12
|
+
export declare class RemoteLineParser<T> extends LineParser<T> {
|
|
13
|
+
protected addMatch(reg: RegExp, index: number, line?: string): boolean;
|
|
14
|
+
protected pushMatch(index: number, matched: string[]): void;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Maybe, Options } from '../types';
|
|
2
|
+
export declare function appendTaskOptions<T extends Options = Options>(options: Maybe<T>, commands?: string[]): string[];
|
|
3
|
+
export declare function getTrailingOptions(args: IArguments, initialPrimitive?: number, objectOnly?: boolean): string[];
|
|
4
|
+
/**
|
|
5
|
+
* Given any number of arguments, returns the trailing options argument, ignoring a trailing function argument
|
|
6
|
+
* if there is one. When not found, the return value is null.
|
|
7
|
+
*/
|
|
8
|
+
export declare function trailingOptionsArgument(args: IArguments): Maybe<Options>;
|
|
9
|
+
/**
|
|
10
|
+
* Returns either the source argument when it is a `Function`, or the default
|
|
11
|
+
* `NOOP` function constant
|
|
12
|
+
*/
|
|
13
|
+
export declare function trailingFunctionArgument(args: unknown[] | IArguments | unknown, includeNoop?: boolean): Maybe<(...args: unknown[]) => unknown>;
|