plugin-agent-orchestrator 1.0.6 → 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 +16 -0
- package/dist/server/collections/orchestrator-logs.js +19 -2
- 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-add-tracing-detail-fields.d.ts +7 -0
- package/dist/server/migrations/20260427000000-add-tracing-detail-fields.js +62 -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.d.ts +7 -0
- package/dist/server/migrations/20260429000000-add-llm-fields.js +68 -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 +160 -12
- 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 +832 -119
- 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 +368 -21
- package/src/client/TracingTab.tsx +316 -102
- 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 +17 -0
- package/src/server/collections/orchestrator-logs.ts +19 -2
- 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-add-tracing-detail-fields.ts +41 -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 +46 -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 +187 -16
- 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 +1085 -147
- package/src/server/tools/skill-execute.ts +157 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { pathspec } from '@simple-git/args-pathspec';
|
|
2
|
+
import { GitConstructError } from './errors/git-construct-error';
|
|
3
|
+
import { GitError } from './errors/git-error';
|
|
4
|
+
import { GitPluginError } from './errors/git-plugin-error';
|
|
5
|
+
import { GitResponseError } from './errors/git-response-error';
|
|
6
|
+
import { TaskConfigurationError } from './errors/task-configuration-error';
|
|
7
|
+
import { CheckRepoActions } from './tasks/check-is-repo';
|
|
8
|
+
import { CleanOptions } from './tasks/clean';
|
|
9
|
+
import { GitConfigScope } from './tasks/config';
|
|
10
|
+
import { DiffNameStatus } from './tasks/diff-name-status';
|
|
11
|
+
import { grepQueryBuilder } from './tasks/grep';
|
|
12
|
+
import { ResetMode } from './tasks/reset';
|
|
13
|
+
export { CheckRepoActions, CleanOptions, DiffNameStatus, GitConfigScope, GitConstructError, GitError, GitPluginError, GitResponseError, ResetMode, TaskConfigurationError, grepQueryBuilder, pathspec, };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare enum LogFormat {
|
|
2
|
+
NONE = "",
|
|
3
|
+
STAT = "--stat",
|
|
4
|
+
NUM_STAT = "--numstat",
|
|
5
|
+
NAME_ONLY = "--name-only",
|
|
6
|
+
NAME_STATUS = "--name-status"
|
|
7
|
+
}
|
|
8
|
+
export declare function logFormatFromCommand(customArgs: string[]): LogFormat;
|
|
9
|
+
export declare function isLogFormat(customArg: string | unknown): boolean;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { GitError } from './git-error';
|
|
2
|
+
import { SimpleGitOptions } from '../types';
|
|
3
|
+
/**
|
|
4
|
+
* The `GitConstructError` is thrown when an error occurs in the constructor
|
|
5
|
+
* of the `simple-git` instance itself. Most commonly as a result of using
|
|
6
|
+
* a `baseDir` option that points to a folder that either does not exist,
|
|
7
|
+
* or cannot be read by the user the node script is running as.
|
|
8
|
+
*
|
|
9
|
+
* Check the `.message` property for more detail including the properties
|
|
10
|
+
* passed to the constructor.
|
|
11
|
+
*/
|
|
12
|
+
export declare class GitConstructError extends GitError {
|
|
13
|
+
readonly config: SimpleGitOptions;
|
|
14
|
+
constructor(config: SimpleGitOptions, message: string);
|
|
15
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { SimpleGitTask } from '../types';
|
|
2
|
+
/**
|
|
3
|
+
* The `GitError` is thrown when the underlying `git` process throws a
|
|
4
|
+
* fatal exception (eg an `ENOENT` exception when attempting to use a
|
|
5
|
+
* non-writable directory as the root for your repo), and acts as the
|
|
6
|
+
* base class for more specific errors thrown by the parsing of the
|
|
7
|
+
* git response or errors in the configuration of the task about to
|
|
8
|
+
* be run.
|
|
9
|
+
*
|
|
10
|
+
* When an exception is thrown, pending tasks in the same instance will
|
|
11
|
+
* not be executed. The recommended way to run a series of tasks that
|
|
12
|
+
* can independently fail without needing to prevent future tasks from
|
|
13
|
+
* running is to catch them individually:
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
import { gitP, SimpleGit, GitError, PullResult } from 'simple-git';
|
|
17
|
+
|
|
18
|
+
function catchTask (e: GitError) {
|
|
19
|
+
return e.
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const git = gitP(repoWorkingDir);
|
|
23
|
+
const pulled: PullResult | GitError = await git.pull().catch(catchTask);
|
|
24
|
+
const pushed: string | GitError = await git.pushTags().catch(catchTask);
|
|
25
|
+
```
|
|
26
|
+
*/
|
|
27
|
+
export declare class GitError extends Error {
|
|
28
|
+
task?: SimpleGitTask<any> | undefined;
|
|
29
|
+
constructor(task?: SimpleGitTask<any> | undefined, message?: string);
|
|
30
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SimpleGitOptions, SimpleGitTask } from '../types';
|
|
2
|
+
import { GitError } from './git-error';
|
|
3
|
+
export declare class GitPluginError extends GitError {
|
|
4
|
+
task?: SimpleGitTask<any> | undefined;
|
|
5
|
+
readonly plugin?: keyof SimpleGitOptions | undefined;
|
|
6
|
+
constructor(task?: SimpleGitTask<any> | undefined, plugin?: keyof SimpleGitOptions | undefined, message?: string);
|
|
7
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { GitError } from './git-error';
|
|
2
|
+
/**
|
|
3
|
+
* The `GitResponseError` is the wrapper for a parsed response that is treated as
|
|
4
|
+
* a fatal error, for example attempting a `merge` can leave the repo in a corrupted
|
|
5
|
+
* state when there are conflicts so the task will reject rather than resolve.
|
|
6
|
+
*
|
|
7
|
+
* For example, catching the merge conflict exception:
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
import { gitP, SimpleGit, GitResponseError, MergeSummary } from 'simple-git';
|
|
11
|
+
|
|
12
|
+
const git = gitP(repoRoot);
|
|
13
|
+
const mergeOptions: string[] = ['--no-ff', 'other-branch'];
|
|
14
|
+
const mergeSummary: MergeSummary = await git.merge(mergeOptions)
|
|
15
|
+
.catch((e: GitResponseError<MergeSummary>) => e.git);
|
|
16
|
+
|
|
17
|
+
if (mergeSummary.failed) {
|
|
18
|
+
// deal with the error
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
*/
|
|
22
|
+
export declare class GitResponseError<T = any> extends GitError {
|
|
23
|
+
/**
|
|
24
|
+
* `.git` access the parsed response that is treated as being an error
|
|
25
|
+
*/
|
|
26
|
+
readonly git: T;
|
|
27
|
+
constructor(
|
|
28
|
+
/**
|
|
29
|
+
* `.git` access the parsed response that is treated as being an error
|
|
30
|
+
*/
|
|
31
|
+
git: T, message?: string);
|
|
32
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { GitError } from './git-error';
|
|
2
|
+
/**
|
|
3
|
+
* The `TaskConfigurationError` is thrown when a command was incorrectly
|
|
4
|
+
* configured. An error of this kind means that no attempt was made to
|
|
5
|
+
* run your command through the underlying `git` binary.
|
|
6
|
+
*
|
|
7
|
+
* Check the `.message` property for more detail on why your configuration
|
|
8
|
+
* resulted in an error.
|
|
9
|
+
*/
|
|
10
|
+
export declare class TaskConfigurationError extends GitError {
|
|
11
|
+
constructor(message?: string);
|
|
12
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { SimpleGitFactory } from '../../typings';
|
|
2
|
+
import * as api from './api';
|
|
3
|
+
import { SimpleGitOptions } from './types';
|
|
4
|
+
/**
|
|
5
|
+
* Adds the necessary properties to the supplied object to enable it for use as
|
|
6
|
+
* the default export of a module.
|
|
7
|
+
*
|
|
8
|
+
* Eg: `module.exports = esModuleFactory({ something () {} })`
|
|
9
|
+
*/
|
|
10
|
+
export declare function esModuleFactory<T>(defaultExport: T): T & {
|
|
11
|
+
__esModule: true;
|
|
12
|
+
default: T;
|
|
13
|
+
};
|
|
14
|
+
export declare function gitExportFactory(factory: SimpleGitFactory): SimpleGitFactory & typeof api;
|
|
15
|
+
export declare function gitInstanceFactory(baseDir?: string | Partial<SimpleGitOptions>, options?: Partial<SimpleGitOptions>): any;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Debugger } from 'debug';
|
|
2
|
+
type OutputLoggingHandler = (message: string, ...args: any[]) => void;
|
|
3
|
+
export interface OutputLogger extends OutputLoggingHandler {
|
|
4
|
+
readonly label: string;
|
|
5
|
+
info: OutputLoggingHandler;
|
|
6
|
+
step(nextStep?: string): OutputLogger;
|
|
7
|
+
sibling(name: string): OutputLogger;
|
|
8
|
+
}
|
|
9
|
+
export declare function createLogger(label: string, verbose?: string | Debugger, initialStep?: string, infoDebugger?: Debugger): OutputLogger;
|
|
10
|
+
/**
|
|
11
|
+
* The `GitLogger` is used by the main `SimpleGit` runner to handle logging
|
|
12
|
+
* any warnings or errors.
|
|
13
|
+
*/
|
|
14
|
+
export declare class GitLogger {
|
|
15
|
+
private _out;
|
|
16
|
+
error: OutputLoggingHandler;
|
|
17
|
+
warn: OutputLoggingHandler;
|
|
18
|
+
constructor(_out?: Debugger);
|
|
19
|
+
silent(silence?: boolean): void;
|
|
20
|
+
}
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { BranchMultiDeleteResult } from '../../../typings';
|
|
2
|
+
import { TaskParser } from '../types';
|
|
3
|
+
import { ExitCodes } from '../utils';
|
|
4
|
+
export declare const parseBranchDeletions: TaskParser<string, BranchMultiDeleteResult>;
|
|
5
|
+
export declare function hasBranchDeletionError(data: string, processExitCode: ExitCodes): boolean;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { LogResult } from '../../../typings';
|
|
2
|
+
import { LogFormat } from '../args/log-format';
|
|
3
|
+
export declare const START_BOUNDARY = "\u00F2\u00F2\u00F2\u00F2\u00F2\u00F2 ";
|
|
4
|
+
export declare const COMMIT_BOUNDARY = " \u00F2\u00F2";
|
|
5
|
+
export declare const SPLITTER = " \u00F2 ";
|
|
6
|
+
export declare function createListLogSummaryParser<T = any>(splitter?: string, fields?: string[], logFormat?: LogFormat): (stdOut: string) => LogResult<T>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { MergeDetail, MergeResult } from '../../../typings';
|
|
2
|
+
import { TaskParser } from '../types';
|
|
3
|
+
/**
|
|
4
|
+
* Parse the complete response from `git.merge`
|
|
5
|
+
*/
|
|
6
|
+
export declare const parseMergeResult: TaskParser<string, MergeResult>;
|
|
7
|
+
/**
|
|
8
|
+
* Parse the merge specific detail (ie: not the content also available in the pull detail) from `git.mnerge`
|
|
9
|
+
* @param stdOut
|
|
10
|
+
*/
|
|
11
|
+
export declare const parseMergeDetail: TaskParser<string, MergeDetail>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PullDetail, PullResult } from '../../../typings';
|
|
2
|
+
import { PullFailedSummary } from '../responses/PullSummary';
|
|
3
|
+
import { TaskParser } from '../types';
|
|
4
|
+
export declare const parsePullDetail: TaskParser<string, PullDetail>;
|
|
5
|
+
export declare const parsePullResult: TaskParser<string, PullResult>;
|
|
6
|
+
export declare function parsePullErrorResult(stdOut: string, stdErr: string): "" | PullFailedSummary;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { RemoteMessageResult, RemoteMessages } from '../../../typings';
|
|
2
|
+
export declare function parseRemoteMessages<T extends RemoteMessages = RemoteMessages>(_stdOut: string, stdErr: string): RemoteMessageResult;
|
|
3
|
+
export declare class RemoteMessageSummary implements RemoteMessages {
|
|
4
|
+
readonly all: string[];
|
|
5
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { GitExecutorResult, SimpleGitPluginConfig } from '../types';
|
|
2
|
+
import { SimpleGitPlugin } from './simple-git-plugin';
|
|
3
|
+
type TaskResult = Omit<GitExecutorResult, 'rejection'>;
|
|
4
|
+
declare function isTaskError(result: TaskResult): boolean;
|
|
5
|
+
export declare function errorDetectionHandler(overwrite?: boolean, isError?: typeof isTaskError, errorMessage?: (result: TaskResult) => Buffer | Error): (error: Buffer | Error | undefined, result: TaskResult) => Error | Buffer<ArrayBufferLike> | undefined;
|
|
6
|
+
export declare function errorDetectionPlugin(config: SimpleGitPluginConfig['errors']): SimpleGitPlugin<'task.error'>;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from './abort-plugin';
|
|
2
|
+
export { blockUnsafeOperationsPlugin } from './block-unsafe-operations-plugin';
|
|
3
|
+
export * from './command-config-prefixing-plugin';
|
|
4
|
+
export * from './completion-detection.plugin';
|
|
5
|
+
export * from './custom-binary.plugin';
|
|
6
|
+
export * from './error-detection.plugin';
|
|
7
|
+
export * from './plugin-store';
|
|
8
|
+
export * from './progress-monitor-plugin';
|
|
9
|
+
export * from './simple-git-plugin';
|
|
10
|
+
export * from './spawn-options-plugin';
|
|
11
|
+
export * from './timout-plugin';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { SimpleGitPlugin, SimpleGitPluginType, SimpleGitPluginTypes } from './simple-git-plugin';
|
|
2
|
+
import type { SimpleGitPluginConfig } from '../types';
|
|
3
|
+
export declare class PluginStore {
|
|
4
|
+
private plugins;
|
|
5
|
+
private events;
|
|
6
|
+
on<K extends keyof SimpleGitPluginConfig>(type: K, listener: (data: SimpleGitPluginConfig[K]) => void): void;
|
|
7
|
+
reconfigure<K extends keyof SimpleGitPluginConfig>(type: K, data: SimpleGitPluginConfig[K]): void;
|
|
8
|
+
append<T extends SimpleGitPluginType>(type: T, action: SimpleGitPlugin<T>['action']): () => boolean;
|
|
9
|
+
add<T extends SimpleGitPluginType>(plugin: void | SimpleGitPlugin<T> | SimpleGitPlugin<T>[]): () => void;
|
|
10
|
+
exec<T extends SimpleGitPluginType>(type: T, data: SimpleGitPluginTypes[T]['data'], context: SimpleGitPluginTypes[T]['context']): typeof data;
|
|
11
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { ChildProcess, SpawnOptions } from 'child_process';
|
|
2
|
+
import { GitExecutorResult } from '../types';
|
|
3
|
+
type SimpleGitTaskPluginContext = {
|
|
4
|
+
readonly method: string;
|
|
5
|
+
readonly commands: string[];
|
|
6
|
+
};
|
|
7
|
+
export interface SimpleGitPluginTypes {
|
|
8
|
+
'spawn.args': {
|
|
9
|
+
data: string[];
|
|
10
|
+
context: SimpleGitTaskPluginContext & {
|
|
11
|
+
env: Record<string, string | undefined>;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
'spawn.binary': {
|
|
15
|
+
data: string;
|
|
16
|
+
context: SimpleGitTaskPluginContext & {};
|
|
17
|
+
};
|
|
18
|
+
'spawn.options': {
|
|
19
|
+
data: Partial<SpawnOptions>;
|
|
20
|
+
context: SimpleGitTaskPluginContext & {};
|
|
21
|
+
};
|
|
22
|
+
'spawn.before': {
|
|
23
|
+
data: void;
|
|
24
|
+
context: SimpleGitTaskPluginContext & {
|
|
25
|
+
kill(reason: Error): void;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
'spawn.after': {
|
|
29
|
+
data: void;
|
|
30
|
+
context: SimpleGitTaskPluginContext & {
|
|
31
|
+
spawned: ChildProcess;
|
|
32
|
+
close(exitCode: number, reason?: Error): void;
|
|
33
|
+
kill(reason: Error): void;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
'task.error': {
|
|
37
|
+
data: {
|
|
38
|
+
error?: Error;
|
|
39
|
+
};
|
|
40
|
+
context: SimpleGitTaskPluginContext & GitExecutorResult;
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
export type SimpleGitPluginType = keyof SimpleGitPluginTypes;
|
|
44
|
+
export interface SimpleGitPlugin<T extends SimpleGitPluginType> {
|
|
45
|
+
action(data: SimpleGitPluginTypes[T]['data'], context: SimpleGitPluginTypes[T]['context']): typeof data;
|
|
46
|
+
type: T;
|
|
47
|
+
}
|
|
48
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BranchMultiDeleteResult, BranchSingleDeleteFailure, BranchSingleDeleteResult, BranchSingleDeleteSuccess } from '../../../typings';
|
|
2
|
+
export declare class BranchDeletionBatch implements BranchMultiDeleteResult {
|
|
3
|
+
all: BranchSingleDeleteResult[];
|
|
4
|
+
branches: {
|
|
5
|
+
[branchName: string]: BranchSingleDeleteResult;
|
|
6
|
+
};
|
|
7
|
+
errors: BranchSingleDeleteResult[];
|
|
8
|
+
get success(): boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare function branchDeletionSuccess(branch: string, hash: string): BranchSingleDeleteSuccess;
|
|
11
|
+
export declare function branchDeletionFailure(branch: string): BranchSingleDeleteFailure;
|
|
12
|
+
export declare function isSingleBranchDeleteFailure(test: BranchSingleDeleteResult): test is BranchSingleDeleteSuccess;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { BranchSummary, BranchSummaryBranch } from '../../../typings';
|
|
2
|
+
export declare enum BranchStatusIdentifier {
|
|
3
|
+
CURRENT = "*",
|
|
4
|
+
LINKED = "+"
|
|
5
|
+
}
|
|
6
|
+
export declare class BranchSummaryResult implements BranchSummary {
|
|
7
|
+
all: string[];
|
|
8
|
+
branches: {
|
|
9
|
+
[p: string]: BranchSummaryBranch;
|
|
10
|
+
};
|
|
11
|
+
current: string;
|
|
12
|
+
detached: boolean;
|
|
13
|
+
push(status: BranchStatusIdentifier | unknown, detached: boolean, name: string, commit: string, label: string): void;
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { CleanSummary } from '../../../typings';
|
|
2
|
+
export declare class CleanResponse implements CleanSummary {
|
|
3
|
+
readonly dryRun: boolean;
|
|
4
|
+
paths: string[];
|
|
5
|
+
files: string[];
|
|
6
|
+
folders: string[];
|
|
7
|
+
constructor(dryRun: boolean);
|
|
8
|
+
}
|
|
9
|
+
export declare function cleanSummaryParser(dryRun: boolean, text: string): CleanSummary;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ConfigGetResult, ConfigListSummary, ConfigValues } from '../../../typings';
|
|
2
|
+
export declare class ConfigList implements ConfigListSummary {
|
|
3
|
+
files: string[];
|
|
4
|
+
values: {
|
|
5
|
+
[fileName: string]: ConfigValues;
|
|
6
|
+
};
|
|
7
|
+
private _all;
|
|
8
|
+
get all(): ConfigValues;
|
|
9
|
+
addFile(file: string): ConfigValues;
|
|
10
|
+
addValue(file: string, key: string, value: string): void;
|
|
11
|
+
}
|
|
12
|
+
export declare function configListParser(text: string): ConfigList;
|
|
13
|
+
export declare function configGetParser(text: string, key: string): ConfigGetResult;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DiffResult, DiffResultBinaryFile, DiffResultTextFile } from '../../../typings';
|
|
2
|
+
/***
|
|
3
|
+
* The DiffSummary is returned as a response to getting `git().status()`
|
|
4
|
+
*/
|
|
5
|
+
export declare class DiffSummary implements DiffResult {
|
|
6
|
+
changed: number;
|
|
7
|
+
deletions: number;
|
|
8
|
+
insertions: number;
|
|
9
|
+
files: Array<DiffResultTextFile | DiffResultBinaryFile>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FileStatusResult } from '../../../typings';
|
|
2
|
+
export declare const fromPathRegex: RegExp;
|
|
3
|
+
export declare class FileStatusSummary implements FileStatusResult {
|
|
4
|
+
path: string;
|
|
5
|
+
index: string;
|
|
6
|
+
working_dir: string;
|
|
7
|
+
readonly from: string | undefined;
|
|
8
|
+
constructor(path: string, index: string, working_dir: string);
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface RemoteWithoutRefs {
|
|
2
|
+
name: string;
|
|
3
|
+
}
|
|
4
|
+
export interface RemoteWithRefs extends RemoteWithoutRefs {
|
|
5
|
+
refs: {
|
|
6
|
+
fetch: string;
|
|
7
|
+
push: string;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
export declare function parseGetRemotes(text: string): RemoteWithoutRefs[];
|
|
11
|
+
export declare function parseGetRemotesVerbose(text: string): RemoteWithRefs[];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { InitResult } from '../../../typings';
|
|
2
|
+
export declare class InitSummary implements InitResult {
|
|
3
|
+
readonly bare: boolean;
|
|
4
|
+
readonly path: string;
|
|
5
|
+
readonly existing: boolean;
|
|
6
|
+
readonly gitDir: string;
|
|
7
|
+
constructor(bare: boolean, path: string, existing: boolean, gitDir: string);
|
|
8
|
+
}
|
|
9
|
+
export declare function parseInit(bare: boolean, path: string, text: string): InitSummary;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { MergeConflict, MergeConflictDeletion, MergeDetail, MergeResultStatus } from '../../../typings';
|
|
2
|
+
export declare class MergeSummaryConflict implements MergeConflict {
|
|
3
|
+
readonly reason: string;
|
|
4
|
+
readonly file: string | null;
|
|
5
|
+
readonly meta?: MergeConflictDeletion | undefined;
|
|
6
|
+
constructor(reason: string, file?: string | null, meta?: MergeConflictDeletion | undefined);
|
|
7
|
+
toString(): string;
|
|
8
|
+
}
|
|
9
|
+
export declare class MergeSummaryDetail implements MergeDetail {
|
|
10
|
+
conflicts: MergeConflict[];
|
|
11
|
+
merges: string[];
|
|
12
|
+
result: MergeResultStatus;
|
|
13
|
+
get failed(): boolean;
|
|
14
|
+
get reason(): string;
|
|
15
|
+
toString(): string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { PullDetailFileChanges, PullDetailSummary, PullFailedResult, PullResult } from '../../../typings';
|
|
2
|
+
export declare class PullSummary implements PullResult {
|
|
3
|
+
remoteMessages: {
|
|
4
|
+
all: never[];
|
|
5
|
+
};
|
|
6
|
+
created: never[];
|
|
7
|
+
deleted: string[];
|
|
8
|
+
files: string[];
|
|
9
|
+
deletions: PullDetailFileChanges;
|
|
10
|
+
insertions: PullDetailFileChanges;
|
|
11
|
+
summary: PullDetailSummary;
|
|
12
|
+
}
|
|
13
|
+
export declare class PullFailedSummary implements PullFailedResult {
|
|
14
|
+
remote: string;
|
|
15
|
+
hash: {
|
|
16
|
+
local: string;
|
|
17
|
+
remote: string;
|
|
18
|
+
};
|
|
19
|
+
branch: {
|
|
20
|
+
local: string;
|
|
21
|
+
remote: string;
|
|
22
|
+
};
|
|
23
|
+
message: string;
|
|
24
|
+
toString(): string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { StatusResult } from '../../../typings';
|
|
2
|
+
export declare class StatusSummary implements StatusResult {
|
|
3
|
+
not_added: never[];
|
|
4
|
+
conflicted: never[];
|
|
5
|
+
created: never[];
|
|
6
|
+
deleted: never[];
|
|
7
|
+
ignored: undefined;
|
|
8
|
+
modified: never[];
|
|
9
|
+
renamed: never[];
|
|
10
|
+
files: never[];
|
|
11
|
+
staged: never[];
|
|
12
|
+
ahead: number;
|
|
13
|
+
behind: number;
|
|
14
|
+
current: null;
|
|
15
|
+
tracking: null;
|
|
16
|
+
detached: boolean;
|
|
17
|
+
isClean: () => boolean;
|
|
18
|
+
}
|
|
19
|
+
export declare const parseStatusSummary: (text: string) => StatusResult;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TagResult } from '../../../typings';
|
|
2
|
+
export declare class TagList implements TagResult {
|
|
3
|
+
readonly all: string[];
|
|
4
|
+
readonly latest: string | undefined;
|
|
5
|
+
constructor(all: string[], latest: string | undefined);
|
|
6
|
+
}
|
|
7
|
+
export declare const parseTagList: (data: string, customSort?: boolean) => TagList;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { PluginStore } from '../plugins';
|
|
2
|
+
import { outputHandler, SimpleGitExecutor, SimpleGitTask } from '../types';
|
|
3
|
+
import { Scheduler } from './scheduler';
|
|
4
|
+
export declare class GitExecutorChain implements SimpleGitExecutor {
|
|
5
|
+
private _executor;
|
|
6
|
+
private _scheduler;
|
|
7
|
+
private _plugins;
|
|
8
|
+
private _chain;
|
|
9
|
+
private _queue;
|
|
10
|
+
private _cwd;
|
|
11
|
+
get cwd(): string;
|
|
12
|
+
set cwd(cwd: string);
|
|
13
|
+
get env(): import("../types").GitExecutorEnv;
|
|
14
|
+
get outputHandler(): outputHandler | undefined;
|
|
15
|
+
constructor(_executor: SimpleGitExecutor, _scheduler: Scheduler, _plugins: PluginStore);
|
|
16
|
+
chain(): this;
|
|
17
|
+
push<R>(task: SimpleGitTask<R>): Promise<R>;
|
|
18
|
+
private attemptTask;
|
|
19
|
+
private onFatalException;
|
|
20
|
+
private attemptRemoteTask;
|
|
21
|
+
private attemptEmptyTask;
|
|
22
|
+
private handleTaskData;
|
|
23
|
+
private gitResponse;
|
|
24
|
+
private _beforeSpawn;
|
|
25
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { PluginStore } from '../plugins';
|
|
2
|
+
import type { GitExecutorEnv, outputHandler, SimpleGitExecutor, SimpleGitTask } from '../types';
|
|
3
|
+
import { Scheduler } from './scheduler';
|
|
4
|
+
export declare class GitExecutor implements SimpleGitExecutor {
|
|
5
|
+
cwd: string;
|
|
6
|
+
private _scheduler;
|
|
7
|
+
private _plugins;
|
|
8
|
+
private _chain;
|
|
9
|
+
env: GitExecutorEnv;
|
|
10
|
+
outputHandler?: outputHandler;
|
|
11
|
+
constructor(cwd: string, _scheduler: Scheduler, _plugins: PluginStore);
|
|
12
|
+
chain(): SimpleGitExecutor;
|
|
13
|
+
push<R>(task: SimpleGitTask<R>): Promise<R>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
type ScheduleCompleteCallback = () => void;
|
|
2
|
+
export declare class Scheduler {
|
|
3
|
+
private concurrency;
|
|
4
|
+
private logger;
|
|
5
|
+
private pending;
|
|
6
|
+
private running;
|
|
7
|
+
constructor(concurrency?: number);
|
|
8
|
+
private schedule;
|
|
9
|
+
next(): Promise<ScheduleCompleteCallback>;
|
|
10
|
+
}
|
|
11
|
+
export {};
|