@gitkraken/core-gitlens 0.5.116 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -1
- package/README.md +9 -2
- package/dist/_virtual/@oxc-project+runtime/helpers/esm/decorate.js +9 -0
- package/dist/_virtual/@oxc-project+runtime/helpers/esm/usingCtx.js +57 -0
- package/dist/git/cache.d.ts +297 -297
- package/dist/git/cache.js +948 -1276
- package/dist/git/cache.js.map +1 -1
- package/dist/git/context.d.ts +202 -197
- package/dist/git/context.js +12 -8
- package/dist/git/context.js.map +1 -1
- package/dist/git/errors.d.ts +268 -281
- package/dist/git/errors.js +928 -706
- package/dist/git/errors.js.map +1 -1
- package/dist/git/features.d.ts +3 -2
- package/dist/git/features.js +34 -55
- package/dist/git/features.js.map +1 -1
- package/dist/git/gitHealth.d.ts +88 -81
- package/dist/git/gitHealth.js +259 -329
- package/dist/git/gitHealth.js.map +1 -1
- package/dist/git/models/author.d.ts +12 -10
- package/dist/git/models/author.js +0 -2
- package/dist/git/models/autolink.d.ts +36 -37
- package/dist/git/models/autolink.js +0 -2
- package/dist/git/models/blame.d.ts +25 -23
- package/dist/git/models/blame.js +0 -2
- package/dist/git/models/branch.d.ts +74 -72
- package/dist/git/models/branch.js +132 -171
- package/dist/git/models/branch.js.map +1 -1
- package/dist/git/models/commit.d.ts +135 -133
- package/dist/git/models/commit.js +381 -484
- package/dist/git/models/commit.js.map +1 -1
- package/dist/git/models/contributor.d.ts +30 -29
- package/dist/git/models/contributor.js +56 -64
- package/dist/git/models/contributor.js.map +1 -1
- package/dist/git/models/defaultBranch.d.ts +5 -3
- package/dist/git/models/defaultBranch.js +0 -2
- package/dist/git/models/diff.d.ts +49 -47
- package/dist/git/models/diff.js +0 -2
- package/dist/git/models/file.d.ts +20 -18
- package/dist/git/models/file.js +0 -2
- package/dist/git/models/fileChange.d.ts +45 -43
- package/dist/git/models/fileChange.js +60 -66
- package/dist/git/models/fileChange.js.map +1 -1
- package/dist/git/models/fileStatus.d.ts +25 -23
- package/dist/git/models/fileStatus.js +30 -26
- package/dist/git/models/fileStatus.js.map +1 -1
- package/dist/git/models/graph.d.ts +328 -320
- package/dist/git/models/graph.js +31 -27
- package/dist/git/models/graph.js.map +1 -1
- package/dist/git/models/graphSearch.d.ts +37 -35
- package/dist/git/models/graphSearch.js +0 -2
- package/dist/git/models/graphSession.d.ts +158 -66
- package/dist/git/models/graphSession.js +72 -1
- package/dist/git/models/graphSession.js.map +1 -1
- package/dist/git/models/issue.d.ts +174 -140
- package/dist/git/models/issue.js +86 -84
- package/dist/git/models/issue.js.map +1 -1
- package/dist/git/models/issueOrPullRequest.d.ts +16 -14
- package/dist/git/models/issueOrPullRequest.js +0 -2
- package/dist/git/models/lineRange.d.ts +6 -4
- package/dist/git/models/lineRange.js +0 -2
- package/dist/git/models/log.d.ts +18 -16
- package/dist/git/models/log.js +0 -2
- package/dist/git/models/mergeConflicts.d.ts +17 -15
- package/dist/git/models/mergeConflicts.js +0 -2
- package/dist/git/models/patch.d.ts +14 -12
- package/dist/git/models/patch.js +0 -2
- package/dist/git/models/pausedOperationStatus.d.ts +42 -40
- package/dist/git/models/pausedOperationStatus.js +0 -2
- package/dist/git/models/pullRequest.d.ts +238 -230
- package/dist/git/models/pullRequest.js +151 -163
- package/dist/git/models/pullRequest.js.map +1 -1
- package/dist/git/models/rebase.d.ts +30 -28
- package/dist/git/models/rebase.js +0 -2
- package/dist/git/models/reference.d.ts +57 -55
- package/dist/git/models/reference.js +0 -2
- package/dist/git/models/reflog.d.ts +29 -27
- package/dist/git/models/reflog.js +63 -82
- package/dist/git/models/reflog.js.map +1 -1
- package/dist/git/models/remote.d.ts +34 -32
- package/dist/git/models/remote.js +74 -95
- package/dist/git/models/remote.js.map +1 -1
- package/dist/git/models/remoteProvider.d.ts +86 -84
- package/dist/git/models/remoteProvider.js +145 -150
- package/dist/git/models/remoteProvider.js.map +1 -1
- package/dist/git/models/remoteResource.d.ts +58 -56
- package/dist/git/models/remoteResource.js +15 -12
- package/dist/git/models/remoteResource.js.map +1 -1
- package/dist/git/models/repository.d.ts +144 -142
- package/dist/git/models/repository.js +358 -406
- package/dist/git/models/repository.js.map +1 -1
- package/dist/git/models/repositoryChangeEvent.d.ts +8 -6
- package/dist/git/models/repositoryChangeEvent.js +26 -24
- package/dist/git/models/repositoryChangeEvent.js.map +1 -1
- package/dist/git/models/repositoryIdentities.d.ts +50 -46
- package/dist/git/models/repositoryIdentities.js +7 -5
- package/dist/git/models/repositoryIdentities.js.map +1 -1
- package/dist/git/models/repositoryMetadata.d.ts +9 -7
- package/dist/git/models/repositoryMetadata.js +0 -2
- package/dist/git/models/resourceDescriptor.d.ts +11 -9
- package/dist/git/models/resourceDescriptor.js +0 -2
- package/dist/git/models/revision.d.ts +2 -0
- package/dist/git/models/revision.js +8 -5
- package/dist/git/models/revision.js.map +1 -1
- package/dist/git/models/search.d.ts +48 -47
- package/dist/git/models/search.js +53 -49
- package/dist/git/models/search.js.map +1 -1
- package/dist/git/models/shortlog.d.ts +5 -3
- package/dist/git/models/shortlog.js +0 -2
- package/dist/git/models/signature.d.ts +28 -26
- package/dist/git/models/signature.js +0 -2
- package/dist/git/models/staging.d.ts +18 -16
- package/dist/git/models/staging.js +0 -2
- package/dist/git/models/stash.d.ts +5 -3
- package/dist/git/models/stash.js +0 -2
- package/dist/git/models/status.d.ts +51 -49
- package/dist/git/models/status.js +172 -205
- package/dist/git/models/status.js.map +1 -1
- package/dist/git/models/statusFile.d.ts +35 -34
- package/dist/git/models/statusFile.js +112 -125
- package/dist/git/models/statusFile.js.map +1 -1
- package/dist/git/models/tag.d.ts +34 -32
- package/dist/git/models/tag.js +64 -77
- package/dist/git/models/tag.js.map +1 -1
- package/dist/git/models/tree.d.ts +8 -6
- package/dist/git/models/tree.js +0 -2
- package/dist/git/models/user.d.ts +6 -4
- package/dist/git/models/user.js +0 -2
- package/dist/git/models/worktree.d.ts +50 -48
- package/dist/git/models/worktree.js +102 -133
- package/dist/git/models/worktree.js.map +1 -1
- package/dist/git/parsers/diffParser.d.ts +7 -5
- package/dist/git/parsers/diffParser.js +438 -587
- package/dist/git/parsers/diffParser.js.map +1 -1
- package/dist/git/parsers/rebaseTodoParser.d.ts +3 -1
- package/dist/git/parsers/rebaseTodoParser.js +165 -208
- package/dist/git/parsers/rebaseTodoParser.js.map +1 -1
- package/dist/git/providers/blame.d.ts +12 -10
- package/dist/git/providers/blame.js +0 -2
- package/dist/git/providers/branches.d.ts +96 -94
- package/dist/git/providers/branches.js +0 -2
- package/dist/git/providers/commits.d.ts +105 -104
- package/dist/git/providers/commits.js +0 -2
- package/dist/git/providers/config.d.ts +80 -78
- package/dist/git/providers/config.js +0 -2
- package/dist/git/providers/contributors.d.ts +23 -21
- package/dist/git/providers/contributors.js +0 -2
- package/dist/git/providers/diff.d.ts +68 -66
- package/dist/git/providers/diff.js +0 -2
- package/dist/git/providers/graph.d.ts +73 -62
- package/dist/git/providers/graph.js +0 -2
- package/dist/git/providers/maintenance.d.ts +180 -178
- package/dist/git/providers/maintenance.js +0 -20
- package/dist/git/providers/operations.d.ts +114 -112
- package/dist/git/providers/operations.js +0 -2
- package/dist/git/providers/patch.d.ts +26 -24
- package/dist/git/providers/patch.js +0 -2
- package/dist/git/providers/pausedOperations.d.ts +19 -17
- package/dist/git/providers/pausedOperations.js +0 -2
- package/dist/git/providers/provider.d.ts +52 -50
- package/dist/git/providers/provider.js +0 -2
- package/dist/git/providers/refs.d.ts +42 -40
- package/dist/git/providers/refs.js +0 -2
- package/dist/git/providers/remotes.d.ts +24 -22
- package/dist/git/providers/remotes.js +0 -2
- package/dist/git/providers/revision.d.ts +25 -23
- package/dist/git/providers/revision.js +0 -2
- package/dist/git/providers/shared/remotes.d.ts +24 -22
- package/dist/git/providers/shared/remotes.js +52 -77
- package/dist/git/providers/shared/remotes.js.map +1 -1
- package/dist/git/providers/staging.d.ts +37 -35
- package/dist/git/providers/staging.js +0 -2
- package/dist/git/providers/stash.d.ts +38 -36
- package/dist/git/providers/stash.js +0 -2
- package/dist/git/providers/status.d.ts +32 -30
- package/dist/git/providers/status.js +0 -2
- package/dist/git/providers/tags.d.ts +20 -18
- package/dist/git/providers/tags.js +0 -2
- package/dist/git/providers/types.d.ts +19 -17
- package/dist/git/providers/types.js +0 -2
- package/dist/git/providers/worktrees.d.ts +26 -24
- package/dist/git/providers/worktrees.js +0 -2
- package/dist/git/remotes/azure-devops.d.ts +49 -38
- package/dist/git/remotes/azure-devops.js +254 -224
- package/dist/git/remotes/azure-devops.js.map +1 -1
- package/dist/git/remotes/bitbucket-server.d.ts +30 -29
- package/dist/git/remotes/bitbucket-server.js +141 -142
- package/dist/git/remotes/bitbucket-server.js.map +1 -1
- package/dist/git/remotes/bitbucket.d.ts +27 -26
- package/dist/git/remotes/bitbucket.js +114 -111
- package/dist/git/remotes/bitbucket.js.map +1 -1
- package/dist/git/remotes/custom.d.ts +26 -25
- package/dist/git/remotes/custom.js +130 -130
- package/dist/git/remotes/custom.js.map +1 -1
- package/dist/git/remotes/gerrit.d.ts +29 -28
- package/dist/git/remotes/gerrit.js +140 -143
- package/dist/git/remotes/gerrit.js.map +1 -1
- package/dist/git/remotes/gitea.d.ts +28 -27
- package/dist/git/remotes/gitea.js +141 -145
- package/dist/git/remotes/gitea.js.map +1 -1
- package/dist/git/remotes/github.d.ts +35 -34
- package/dist/git/remotes/github.js +196 -190
- package/dist/git/remotes/github.js.map +1 -1
- package/dist/git/remotes/gitlab.d.ts +31 -30
- package/dist/git/remotes/gitlab.js +245 -227
- package/dist/git/remotes/gitlab.js.map +1 -1
- package/dist/git/remotes/google-source.d.ts +16 -14
- package/dist/git/remotes/google-source.js +33 -31
- package/dist/git/remotes/google-source.js.map +1 -1
- package/dist/git/remotes/matcher.d.ts +16 -14
- package/dist/git/remotes/matcher.js +141 -124
- package/dist/git/remotes/matcher.js.map +1 -1
- package/dist/git/repositoryService.d.ts +47 -47
- package/dist/git/repositoryService.js +47 -44
- package/dist/git/repositoryService.js.map +1 -1
- package/dist/git/run.types.d.ts +91 -76
- package/dist/git/run.types.js +0 -2
- package/dist/git/service.d.ts +73 -71
- package/dist/git/service.js +286 -302
- package/dist/git/service.js.map +1 -1
- package/dist/git/utils/autolink.utils.d.ts +4 -2
- package/dist/git/utils/autolink.utils.js +103 -139
- package/dist/git/utils/autolink.utils.js.map +1 -1
- package/dist/git/utils/blame.utils.d.ts +22 -20
- package/dist/git/utils/blame.utils.js +196 -230
- package/dist/git/utils/blame.utils.js.map +1 -1
- package/dist/git/utils/branch.utils.d.ts +7 -9
- package/dist/git/utils/branch.utils.js +89 -115
- package/dist/git/utils/branch.utils.js.map +1 -1
- package/dist/git/utils/commit.utils.d.ts +10 -16
- package/dist/git/utils/commit.utils.js +28 -47
- package/dist/git/utils/commit.utils.js.map +1 -1
- package/dist/git/utils/config.utils.d.ts +2 -0
- package/dist/git/utils/config.utils.js +14 -5
- package/dist/git/utils/config.utils.js.map +1 -1
- package/dist/git/utils/conflictResolution.utils.d.ts +16 -13
- package/dist/git/utils/conflictResolution.utils.js +116 -113
- package/dist/git/utils/conflictResolution.utils.js.map +1 -1
- package/dist/git/utils/contributor.utils.d.ts +10 -8
- package/dist/git/utils/contributor.utils.js +47 -69
- package/dist/git/utils/contributor.utils.js.map +1 -1
- package/dist/git/utils/fetch.utils.d.ts +2 -0
- package/dist/git/utils/fetch.utils.js +33 -44
- package/dist/git/utils/fetch.utils.js.map +1 -1
- package/dist/git/utils/fileStatus.utils.d.ts +22 -21
- package/dist/git/utils/fileStatus.utils.js +59 -45
- package/dist/git/utils/fileStatus.utils.js.map +1 -1
- package/dist/git/utils/graph.utils.d.ts +19 -1
- package/dist/git/utils/graph.utils.js +60 -35
- package/dist/git/utils/graph.utils.js.map +1 -1
- package/dist/git/utils/issue.utils.d.ts +3 -1
- package/dist/git/utils/issue.utils.js +154 -149
- package/dist/git/utils/issue.utils.js.map +1 -1
- package/dist/git/utils/issueOrPullRequest.utils.d.ts +3 -1
- package/dist/git/utils/issueOrPullRequest.utils.js +23 -20
- package/dist/git/utils/issueOrPullRequest.utils.js.map +1 -1
- package/dist/git/utils/mergeConflicts.utils.d.ts +4 -1
- package/dist/git/utils/mergeConflicts.utils.js +28 -15
- package/dist/git/utils/mergeConflicts.utils.js.map +1 -1
- package/dist/git/utils/pausedOperationStatus.utils.d.ts +7 -42
- package/dist/git/utils/pausedOperationStatus.utils.js +83 -146
- package/dist/git/utils/pausedOperationStatus.utils.js.map +1 -1
- package/dist/git/utils/pullRequest.utils.d.ts +7 -5
- package/dist/git/utils/pullRequest.utils.js +180 -187
- package/dist/git/utils/pullRequest.utils.js.map +1 -1
- package/dist/git/utils/reachability.utils.d.ts +6 -6
- package/dist/git/utils/reachability.utils.js +120 -147
- package/dist/git/utils/reachability.utils.js.map +1 -1
- package/dist/git/utils/rebase.utils.d.ts +3 -1
- package/dist/git/utils/rebase.utils.js +87 -71
- package/dist/git/utils/rebase.utils.js.map +1 -1
- package/dist/git/utils/reference.utils.d.ts +33 -32
- package/dist/git/utils/reference.utils.js +152 -179
- package/dist/git/utils/reference.utils.js.map +1 -1
- package/dist/git/utils/remote.utils.d.ts +5 -3
- package/dist/git/utils/remote.utils.js +77 -116
- package/dist/git/utils/remote.utils.js.map +1 -1
- package/dist/git/utils/repository.utils.d.ts +3 -1
- package/dist/git/utils/repository.utils.js +12 -11
- package/dist/git/utils/repository.utils.js.map +1 -1
- package/dist/git/utils/resourceDescriptor.utils.d.ts +3 -1
- package/dist/git/utils/resourceDescriptor.utils.js +8 -14
- package/dist/git/utils/resourceDescriptor.utils.js.map +1 -1
- package/dist/git/utils/revision.utils.d.ts +11 -10
- package/dist/git/utils/revision.utils.js +69 -83
- package/dist/git/utils/revision.utils.js.map +1 -1
- package/dist/git/utils/search.utils.d.ts +5 -3
- package/dist/git/utils/search.utils.js +383 -522
- package/dist/git/utils/search.utils.js.map +1 -1
- package/dist/git/utils/sorting.d.ts +22 -20
- package/dist/git/utils/sorting.js +133 -227
- package/dist/git/utils/sorting.js.map +1 -1
- package/dist/git/utils/sshKey.utils.d.ts +2 -0
- package/dist/git/utils/sshKey.utils.js +10 -15
- package/dist/git/utils/sshKey.utils.js.map +1 -1
- package/dist/git/utils/status.utils.d.ts +20 -15
- package/dist/git/utils/status.utils.js +93 -79
- package/dist/git/utils/status.utils.js.map +1 -1
- package/dist/git/utils/statusFile.utils.d.ts +6 -4
- package/dist/git/utils/statusFile.utils.js +71 -72
- package/dist/git/utils/statusFile.utils.js.map +1 -1
- package/dist/git/utils/tag.utils.d.ts +4 -2
- package/dist/git/utils/tag.utils.js +10 -8
- package/dist/git/utils/tag.utils.js.map +1 -1
- package/dist/git/utils/tooltip.utils.d.ts +5 -2
- package/dist/git/utils/tooltip.utils.js +49 -24
- package/dist/git/utils/tooltip.utils.js.map +1 -1
- package/dist/git/utils/uriAuthority.d.ts +9 -7
- package/dist/git/utils/uriAuthority.js +19 -16
- package/dist/git/utils/uriAuthority.js.map +1 -1
- package/dist/git/utils/user.utils.d.ts +3 -1
- package/dist/git/utils/user.utils.js +6 -10
- package/dist/git/utils/user.utils.js.map +1 -1
- package/dist/git/utils/worktree.utils.d.ts +5 -3
- package/dist/git/utils/worktree.utils.js +14 -12
- package/dist/git/utils/worktree.utils.js.map +1 -1
- package/dist/git/watching/changeEvent.d.ts +38 -36
- package/dist/git/watching/changeEvent.js +60 -67
- package/dist/git/watching/changeEvent.js.map +1 -1
- package/dist/git/watching/classifyChange.d.ts +3 -1
- package/dist/git/watching/classifyChange.js +50 -79
- package/dist/git/watching/classifyChange.js.map +1 -1
- package/dist/git/watching/gitIgnoreFilter.d.ts +43 -41
- package/dist/git/watching/gitIgnoreFilter.js +92 -107
- package/dist/git/watching/gitIgnoreFilter.js.map +1 -1
- package/dist/git/watching/initWatcher.d.ts +22 -20
- package/dist/git/watching/initWatcher.js +58 -57
- package/dist/git/watching/initWatcher.js.map +1 -1
- package/dist/git/watching/provider.d.ts +8 -7
- package/dist/git/watching/provider.js +0 -2
- package/dist/git/watching/watchGroup.d.ts +29 -28
- package/dist/git/watching/watchGroup.js +105 -137
- package/dist/git/watching/watchGroup.js.map +1 -1
- package/dist/git/watching/watchService.d.ts +70 -68
- package/dist/git/watching/watchService.js +275 -339
- package/dist/git/watching/watchService.js.map +1 -1
- package/dist/git/watching/watchSession.d.ts +112 -111
- package/dist/git/watching/watchSession.js +260 -314
- package/dist/git/watching/watchSession.js.map +1 -1
- package/dist/git/watching/watcherPatterns.d.ts +4 -2
- package/dist/git/watching/watcherPatterns.js +21 -24
- package/dist/git/watching/watcherPatterns.js.map +1 -1
- package/dist/git-cli/cliGitProvider.d.ts +117 -114
- package/dist/git-cli/cliGitProvider.js +261 -283
- package/dist/git-cli/cliGitProvider.js.map +1 -1
- package/dist/git-cli/exec/eventLoopMonitor.d.ts +26 -0
- package/dist/git-cli/exec/eventLoopMonitor.js +61 -0
- package/dist/git-cli/exec/eventLoopMonitor.js.map +1 -0
- package/dist/git-cli/exec/exec.d.ts +3 -4
- package/dist/git-cli/exec/exec.errors.d.ts +2 -2
- package/dist/git-cli/exec/exec.errors.js +2 -2
- package/dist/git-cli/exec/exec.js +3 -3
- package/dist/git-cli/exec/exec.types.d.ts +2 -2
- package/dist/git-cli/exec/exec.types.js +0 -2
- package/dist/git-cli/exec/features.d.ts +2 -3
- package/dist/git-cli/exec/features.js +2 -2
- package/dist/git-cli/exec/git.d.ts +224 -205
- package/dist/git-cli/exec/git.js +834 -1042
- package/dist/git-cli/exec/git.js.map +1 -1
- package/dist/git-cli/exec/gitQueue.d.ts +51 -48
- package/dist/git-cli/exec/gitQueue.js +225 -260
- package/dist/git-cli/exec/gitQueue.js.map +1 -1
- package/dist/git-cli/exec/locator.d.ts +8 -6
- package/dist/git-cli/exec/locator.js +95 -121
- package/dist/git-cli/exec/locator.js.map +1 -1
- package/dist/git-cli/parsers/blameParser.d.ts +22 -20
- package/dist/git-cli/parsers/blameParser.js +238 -332
- package/dist/git-cli/parsers/blameParser.js.map +1 -1
- package/dist/git-cli/parsers/indexParser.d.ts +3 -1
- package/dist/git-cli/parsers/indexParser.js +146 -221
- package/dist/git-cli/parsers/indexParser.js.map +1 -1
- package/dist/git-cli/parsers/logParser.d.ts +103 -110
- package/dist/git-cli/parsers/logParser.js +998 -1199
- package/dist/git-cli/parsers/logParser.js.map +1 -1
- package/dist/git-cli/parsers/mergeTreeParser.d.ts +5 -3
- package/dist/git-cli/parsers/mergeTreeParser.js +28 -72
- package/dist/git-cli/parsers/mergeTreeParser.js.map +1 -1
- package/dist/git-cli/parsers/refParser.d.ts +5 -4
- package/dist/git-cli/parsers/refParser.js +92 -137
- package/dist/git-cli/parsers/refParser.js.map +1 -1
- package/dist/git-cli/parsers/reflogParser.d.ts +7 -6
- package/dist/git-cli/parsers/reflogParser.js +100 -173
- package/dist/git-cli/parsers/reflogParser.js.map +1 -1
- package/dist/git-cli/parsers/remoteParser.d.ts +4 -2
- package/dist/git-cli/parsers/remoteParser.js +74 -126
- package/dist/git-cli/parsers/remoteParser.js.map +1 -1
- package/dist/git-cli/parsers/shortlogParser.d.ts +4 -2
- package/dist/git-cli/parsers/shortlogParser.js +44 -49
- package/dist/git-cli/parsers/shortlogParser.js.map +1 -1
- package/dist/git-cli/parsers/signatureParser.d.ts +3 -1
- package/dist/git-cli/parsers/signatureParser.js +82 -124
- package/dist/git-cli/parsers/signatureParser.js.map +1 -1
- package/dist/git-cli/parsers/sshSignatureParser.d.ts +5 -3
- package/dist/git-cli/parsers/sshSignatureParser.js +55 -64
- package/dist/git-cli/parsers/sshSignatureParser.js.map +1 -1
- package/dist/git-cli/parsers/statusParser.d.ts +4 -2
- package/dist/git-cli/parsers/statusParser.js +148 -205
- package/dist/git-cli/parsers/statusParser.js.map +1 -1
- package/dist/git-cli/parsers/treeParser.d.ts +3 -1
- package/dist/git-cli/parsers/treeParser.js +57 -108
- package/dist/git-cli/parsers/treeParser.js.map +1 -1
- package/dist/git-cli/parsers/worktreeParser.d.ts +4 -3
- package/dist/git-cli/parsers/worktreeParser.js +76 -132
- package/dist/git-cli/parsers/worktreeParser.js.map +1 -1
- package/dist/git-cli/providers/blame.d.ts +25 -23
- package/dist/git-cli/providers/blame.js +404 -413
- package/dist/git-cli/providers/blame.js.map +1 -1
- package/dist/git-cli/providers/branches.d.ts +117 -116
- package/dist/git-cli/providers/branches.js +1132 -1468
- package/dist/git-cli/providers/branches.js.map +1 -1
- package/dist/git-cli/providers/commitFilesetUtils.d.ts +4 -2
- package/dist/git-cli/providers/commitFilesetUtils.js +36 -18
- package/dist/git-cli/providers/commitFilesetUtils.js.map +1 -1
- package/dist/git-cli/providers/commits.d.ts +58 -56
- package/dist/git-cli/providers/commits.js +1084 -1423
- package/dist/git-cli/providers/commits.js.map +1 -1
- package/dist/git-cli/providers/config.d.ts +129 -127
- package/dist/git-cli/providers/config.js +612 -831
- package/dist/git-cli/providers/config.js.map +1 -1
- package/dist/git-cli/providers/contributors.d.ts +29 -28
- package/dist/git-cli/providers/contributors.js +246 -351
- package/dist/git-cli/providers/contributors.js.map +1 -1
- package/dist/git-cli/providers/diff.d.ts +97 -94
- package/dist/git-cli/providers/diff.js +638 -845
- package/dist/git-cli/providers/diff.js.map +1 -1
- package/dist/git-cli/providers/graph.d.ts +66 -68
- package/dist/git-cli/providers/graph.js +1400 -1848
- package/dist/git-cli/providers/graph.js.map +1 -1
- package/dist/git-cli/providers/maintenance.d.ts +305 -303
- package/dist/git-cli/providers/maintenance.js +1526 -2078
- package/dist/git-cli/providers/maintenance.js.map +1 -1
- package/dist/git-cli/providers/operations.d.ts +96 -94
- package/dist/git-cli/providers/operations.js +664 -724
- package/dist/git-cli/providers/operations.js.map +1 -1
- package/dist/git-cli/providers/patch.d.ts +37 -35
- package/dist/git-cli/providers/patch.js +206 -307
- package/dist/git-cli/providers/patch.js.map +1 -1
- package/dist/git-cli/providers/pausedOperations.d.ts +30 -28
- package/dist/git-cli/providers/pausedOperations.js +475 -506
- package/dist/git-cli/providers/pausedOperations.js.map +1 -1
- package/dist/git-cli/providers/refs.d.ts +50 -48
- package/dist/git-cli/providers/refs.js +335 -479
- package/dist/git-cli/providers/refs.js.map +1 -1
- package/dist/git-cli/providers/remotes.d.ts +23 -21
- package/dist/git-cli/providers/remotes.js +71 -92
- package/dist/git-cli/providers/remotes.js.map +1 -1
- package/dist/git-cli/providers/revision.d.ts +27 -25
- package/dist/git-cli/providers/revision.js +288 -304
- package/dist/git-cli/providers/revision.js.map +1 -1
- package/dist/git-cli/providers/staging.d.ts +31 -29
- package/dist/git-cli/providers/staging.js +140 -189
- package/dist/git-cli/providers/staging.js.map +1 -1
- package/dist/git-cli/providers/stash.d.ts +44 -42
- package/dist/git-cli/providers/stash.js +288 -387
- package/dist/git-cli/providers/stash.js.map +1 -1
- package/dist/git-cli/providers/status.d.ts +61 -59
- package/dist/git-cli/providers/status.js +332 -453
- package/dist/git-cli/providers/status.js.map +1 -1
- package/dist/git-cli/providers/tags.d.ts +31 -29
- package/dist/git-cli/providers/tags.js +158 -215
- package/dist/git-cli/providers/tags.js.map +1 -1
- package/dist/git-cli/providers/worktrees.d.ts +35 -33
- package/dist/git-cli/providers/worktrees.js +178 -203
- package/dist/git-cli/providers/worktrees.js.map +1 -1
- package/dist/git-cli/service.d.ts +28 -26
- package/dist/git-cli/service.js +38 -40
- package/dist/git-cli/service.js.map +1 -1
- package/dist/ipc/discovery.d.ts +19 -17
- package/dist/ipc/discovery.js +104 -128
- package/dist/ipc/discovery.js.map +1 -1
- package/dist/ipc/ipcServer.d.ts +16 -14
- package/dist/ipc/ipcServer.js +139 -160
- package/dist/ipc/ipcServer.js.map +1 -1
- package/dist/plus/agents/agentCapabilities.d.ts +50 -37
- package/dist/plus/agents/agentCapabilities.js +138 -173
- package/dist/plus/agents/agentCapabilities.js.map +1 -1
- package/dist/plus/agents/providers/claudeCodeTranscript.d.ts +153 -151
- package/dist/plus/agents/providers/claudeCodeTranscript.js +605 -679
- package/dist/plus/agents/providers/claudeCodeTranscript.js.map +1 -1
- package/dist/plus/agents/providers/gkAgentProvider.d.ts +237 -240
- package/dist/plus/agents/providers/gkAgentProvider.js +2162 -3334
- package/dist/plus/agents/providers/gkAgentProvider.js.map +1 -1
- package/dist/plus/agents/sanitizePrompt.d.ts +2 -0
- package/dist/plus/agents/sanitizePrompt.js +58 -91
- package/dist/plus/agents/sanitizePrompt.js.map +1 -1
- package/dist/plus/agents/stateMachine.d.ts +7 -5
- package/dist/plus/agents/stateMachine.js +135 -163
- package/dist/plus/agents/stateMachine.js.map +1 -1
- package/dist/plus/agents/types.d.ts +333 -336
- package/dist/plus/agents/types.js +48 -48
- package/dist/plus/agents/types.js.map +1 -1
- package/dist/plus/ai/constants.d.ts +3 -1
- package/dist/plus/ai/constants.js +88 -84
- package/dist/plus/ai/constants.js.map +1 -1
- package/dist/plus/ai/errors.d.ts +22 -18
- package/dist/plus/ai/errors.js +158 -138
- package/dist/plus/ai/errors.js.map +1 -1
- package/dist/plus/ai/models/conversation.d.ts +11 -9
- package/dist/plus/ai/models/conversation.js +30 -26
- package/dist/plus/ai/models/conversation.js.map +1 -1
- package/dist/plus/ai/models/model.d.ts +29 -27
- package/dist/plus/ai/models/model.js +663 -471
- package/dist/plus/ai/models/model.js.map +1 -1
- package/dist/plus/ai/models/promptTemplates.d.ts +56 -55
- package/dist/plus/ai/models/promptTemplates.js +0 -2
- package/dist/plus/ai/models/provider.d.ts +79 -77
- package/dist/plus/ai/models/provider.js +0 -2
- package/dist/plus/ai/models/results.d.ts +27 -21
- package/dist/plus/ai/models/results.js +0 -2
- package/dist/plus/ai/prompts.d.ts +4 -2
- package/dist/plus/ai/prompts.js +301 -190
- package/dist/plus/ai/prompts.js.map +1 -1
- package/dist/plus/ai/providers/anthropicProvider.d.ts +33 -32
- package/dist/plus/ai/providers/anthropicProvider.js +484 -381
- package/dist/plus/ai/providers/anthropicProvider.js.map +1 -1
- package/dist/plus/ai/providers/azureProvider.d.ts +18 -16
- package/dist/plus/ai/providers/azureProvider.js +53 -53
- package/dist/plus/ai/providers/azureProvider.js.map +1 -1
- package/dist/plus/ai/providers/context.d.ts +23 -20
- package/dist/plus/ai/providers/context.js +0 -2
- package/dist/plus/ai/providers/deepSeekProvider.d.ts +17 -15
- package/dist/plus/ai/providers/deepSeekProvider.js +45 -39
- package/dist/plus/ai/providers/deepSeekProvider.js.map +1 -1
- package/dist/plus/ai/providers/geminiProvider.d.ts +16 -14
- package/dist/plus/ai/providers/geminiProvider.js +316 -230
- package/dist/plus/ai/providers/geminiProvider.js.map +1 -1
- package/dist/plus/ai/providers/gitkrakenProvider.d.ts +22 -20
- package/dist/plus/ai/providers/gitkrakenProvider.js +165 -260
- package/dist/plus/ai/providers/gitkrakenProvider.js.map +1 -1
- package/dist/plus/ai/providers/huggingFaceProvider.d.ts +16 -14
- package/dist/plus/ai/providers/huggingFaceProvider.js +45 -46
- package/dist/plus/ai/providers/huggingFaceProvider.js.map +1 -1
- package/dist/plus/ai/providers/mistralProvider.d.ts +22 -20
- package/dist/plus/ai/providers/mistralProvider.js +263 -195
- package/dist/plus/ai/providers/mistralProvider.js.map +1 -1
- package/dist/plus/ai/providers/ollamaProvider.d.ts +26 -24
- package/dist/plus/ai/providers/ollamaProvider.js +156 -189
- package/dist/plus/ai/providers/ollamaProvider.js.map +1 -1
- package/dist/plus/ai/providers/openAICompatibleProvider.d.ts +18 -16
- package/dist/plus/ai/providers/openAICompatibleProvider.js +50 -50
- package/dist/plus/ai/providers/openAICompatibleProvider.js.map +1 -1
- package/dist/plus/ai/providers/openAICompatibleProviderBase.d.ts +187 -185
- package/dist/plus/ai/providers/openAICompatibleProviderBase.js +356 -475
- package/dist/plus/ai/providers/openAICompatibleProviderBase.js.map +1 -1
- package/dist/plus/ai/providers/openRouterProvider.d.ts +20 -19
- package/dist/plus/ai/providers/openRouterProvider.js +60 -65
- package/dist/plus/ai/providers/openRouterProvider.js.map +1 -1
- package/dist/plus/ai/providers/openaiProvider.d.ts +17 -15
- package/dist/plus/ai/providers/openaiProvider.js +35 -34
- package/dist/plus/ai/providers/openaiProvider.js.map +1 -1
- package/dist/plus/ai/providers/responseFormatCache.d.ts +4 -2
- package/dist/plus/ai/providers/responseFormatCache.js +21 -17
- package/dist/plus/ai/providers/responseFormatCache.js.map +1 -1
- package/dist/plus/ai/providers/xaiProvider.d.ts +16 -14
- package/dist/plus/ai/providers/xaiProvider.js +61 -46
- package/dist/plus/ai/providers/xaiProvider.js.map +1 -1
- package/dist/plus/ai/utils/ai.utils.d.ts +4 -2
- package/dist/plus/ai/utils/ai.utils.js +50 -77
- package/dist/plus/ai/utils/ai.utils.js.map +1 -1
- package/dist/plus/ai/utils/results.utils.d.ts +7 -5
- package/dist/plus/ai/utils/results.utils.js +235 -269
- package/dist/plus/ai/utils/results.utils.js.map +1 -1
- package/dist/plus/ai/utils/truncation.utils.d.ts +3 -2
- package/dist/plus/ai/utils/truncation.utils.js +242 -205
- package/dist/plus/ai/utils/truncation.utils.js.map +1 -1
- package/dist/plus/git-github/api/config.d.ts +58 -56
- package/dist/plus/git-github/api/config.js +15 -11
- package/dist/plus/git-github/api/config.js.map +1 -1
- package/dist/plus/git-github/api/github.d.ts +500 -497
- package/dist/plus/git-github/api/github.js +2326 -3121
- package/dist/plus/git-github/api/github.js.map +1 -1
- package/dist/plus/git-github/api/github.utils.d.ts +5 -3
- package/dist/plus/git-github/api/github.utils.js +24 -19
- package/dist/plus/git-github/api/github.utils.js.map +1 -1
- package/dist/plus/git-github/api/issueSearchQuery.d.ts +5 -3
- package/dist/plus/git-github/api/issueSearchQuery.js +204 -221
- package/dist/plus/git-github/api/issueSearchQuery.js.map +1 -1
- package/dist/plus/git-github/api/pullRequestSearchQuery.d.ts +6 -5
- package/dist/plus/git-github/api/pullRequestSearchQuery.js +89 -116
- package/dist/plus/git-github/api/pullRequestSearchQuery.js.map +1 -1
- package/dist/plus/git-github/api/token.d.ts +10 -8
- package/dist/plus/git-github/api/token.js +0 -2
- package/dist/plus/git-github/api/tokenUtils.d.ts +4 -2
- package/dist/plus/git-github/api/tokenUtils.js +14 -10
- package/dist/plus/git-github/api/tokenUtils.js.map +1 -1
- package/dist/plus/git-github/api/types.d.ts +94 -92
- package/dist/plus/git-github/api/types.js +0 -2
- package/dist/plus/git-github/context.d.ts +65 -63
- package/dist/plus/git-github/context.js +13 -9
- package/dist/plus/git-github/context.js.map +1 -1
- package/dist/plus/git-github/models.d.ts +182 -182
- package/dist/plus/git-github/models.js +199 -265
- package/dist/plus/git-github/models.js.map +1 -1
- package/dist/plus/git-github/providers/github/blame.d.ts +32 -31
- package/dist/plus/git-github/providers/github/blame.js +137 -150
- package/dist/plus/git-github/providers/github/blame.js.map +1 -1
- package/dist/plus/git-github/providers/github/branches.d.ts +42 -40
- package/dist/plus/git-github/providers/github/branches.js +199 -274
- package/dist/plus/git-github/providers/github/branches.js.map +1 -1
- package/dist/plus/git-github/providers/github/commits.d.ts +35 -33
- package/dist/plus/git-github/providers/github/commits.js +527 -606
- package/dist/plus/git-github/providers/github/commits.js.map +1 -1
- package/dist/plus/git-github/providers/github/config.d.ts +10 -8
- package/dist/plus/git-github/providers/github/config.js +35 -45
- package/dist/plus/git-github/providers/github/config.js.map +1 -1
- package/dist/plus/git-github/providers/github/contributors.d.ts +25 -24
- package/dist/plus/git-github/providers/github/contributors.js +174 -216
- package/dist/plus/git-github/providers/github/contributors.js.map +1 -1
- package/dist/plus/git-github/providers/github/diff.d.ts +34 -32
- package/dist/plus/git-github/providers/github/diff.js +154 -194
- package/dist/plus/git-github/providers/github/diff.js.map +1 -1
- package/dist/plus/git-github/providers/github/graph.d.ts +33 -31
- package/dist/plus/git-github/providers/github/graph.js +400 -452
- package/dist/plus/git-github/providers/github/graph.js.map +1 -1
- package/dist/plus/git-github/providers/github/refs.d.ts +33 -31
- package/dist/plus/git-github/providers/github/refs.js +97 -131
- package/dist/plus/git-github/providers/github/refs.js.map +1 -1
- package/dist/plus/git-github/providers/github/remotes.d.ts +8 -6
- package/dist/plus/git-github/providers/github/remotes.js +30 -35
- package/dist/plus/git-github/providers/github/remotes.js.map +1 -1
- package/dist/plus/git-github/providers/github/revision.d.ts +13 -11
- package/dist/plus/git-github/providers/github/revision.js +106 -129
- package/dist/plus/git-github/providers/github/revision.js.map +1 -1
- package/dist/plus/git-github/providers/github/status.d.ts +24 -22
- package/dist/plus/git-github/providers/github/status.js +49 -47
- package/dist/plus/git-github/providers/github/status.js.map +1 -1
- package/dist/plus/git-github/providers/github/tags.d.ts +21 -19
- package/dist/plus/git-github/providers/github/tags.js +78 -103
- package/dist/plus/git-github/providers/github/tags.js.map +1 -1
- package/dist/plus/git-github/providers/githubGitProvider.d.ts +67 -64
- package/dist/plus/git-github/providers/githubGitProvider.js +131 -128
- package/dist/plus/git-github/providers/githubGitProvider.js.map +1 -1
- package/dist/plus/git-github/providers/githubProvider.d.ts +46 -44
- package/dist/plus/git-github/providers/githubProvider.js +0 -2
- package/dist/plus/integrations/authentication/cloudIntegrationService.d.ts +29 -27
- package/dist/plus/integrations/authentication/cloudIntegrationService.js +173 -208
- package/dist/plus/integrations/authentication/cloudIntegrationService.js.map +1 -1
- package/dist/plus/integrations/authentication/configuredIntegrationService.d.ts +126 -107
- package/dist/plus/integrations/authentication/configuredIntegrationService.js +399 -497
- package/dist/plus/integrations/authentication/configuredIntegrationService.js.map +1 -1
- package/dist/plus/integrations/authentication/integrationAuthenticationProvider.d.ts +73 -72
- package/dist/plus/integrations/authentication/integrationAuthenticationProvider.js +153 -232
- package/dist/plus/integrations/authentication/integrationAuthenticationProvider.js.map +1 -1
- package/dist/plus/integrations/authentication/integrationAuthenticationService.d.ts +61 -59
- package/dist/plus/integrations/authentication/integrationAuthenticationService.js +100 -124
- package/dist/plus/integrations/authentication/integrationAuthenticationService.js.map +1 -1
- package/dist/plus/integrations/authentication/manualTokenProvider.d.ts +14 -12
- package/dist/plus/integrations/authentication/manualTokenProvider.js +26 -51
- package/dist/plus/integrations/authentication/manualTokenProvider.js.map +1 -1
- package/dist/plus/integrations/authentication/models.d.ts +102 -85
- package/dist/plus/integrations/authentication/models.js +55 -54
- package/dist/plus/integrations/authentication/models.js.map +1 -1
- package/dist/plus/integrations/authentication/rejectedTokenTracker.d.ts +19 -17
- package/dist/plus/integrations/authentication/rejectedTokenTracker.js +53 -51
- package/dist/plus/integrations/authentication/rejectedTokenTracker.js.map +1 -1
- package/dist/plus/integrations/collectionMetadata.d.ts +12 -10
- package/dist/plus/integrations/collectionMetadata.js +204 -254
- package/dist/plus/integrations/collectionMetadata.js.map +1 -1
- package/dist/plus/integrations/constants.d.ts +60 -34
- package/dist/plus/integrations/constants.js +157 -132
- package/dist/plus/integrations/constants.js.map +1 -1
- package/dist/plus/integrations/context.d.ts +253 -252
- package/dist/plus/integrations/context.js +0 -2
- package/dist/plus/integrations/errors.d.ts +26 -25
- package/dist/plus/integrations/errors.js +116 -140
- package/dist/plus/integrations/errors.js.map +1 -1
- package/dist/plus/integrations/index.d.ts +36 -40
- package/dist/plus/integrations/index.js +46 -57
- package/dist/plus/integrations/index.js.map +1 -1
- package/dist/plus/integrations/integrationService.d.ts +445 -440
- package/dist/plus/integrations/integrationService.js +1054 -1324
- package/dist/plus/integrations/integrationService.js.map +1 -1
- package/dist/plus/integrations/lite.d.ts +33 -31
- package/dist/plus/integrations/lite.js +84 -122
- package/dist/plus/integrations/lite.js.map +1 -1
- package/dist/plus/integrations/manager.d.ts +592 -580
- package/dist/plus/integrations/manager.js +0 -2
- package/dist/plus/integrations/models/gitHostIntegration.d.ts +420 -415
- package/dist/plus/integrations/models/gitHostIntegration.js +1180 -1293
- package/dist/plus/integrations/models/gitHostIntegration.js.map +1 -1
- package/dist/plus/integrations/models/integration.d.ts +200 -190
- package/dist/plus/integrations/models/integration.js +577 -722
- package/dist/plus/integrations/models/integration.js.map +1 -1
- package/dist/plus/integrations/models/issueCache.d.ts +15 -13
- package/dist/plus/integrations/models/issueCache.js +9 -7
- package/dist/plus/integrations/models/issueCache.js.map +1 -1
- package/dist/plus/integrations/models/issueReads.d.ts +108 -85
- package/dist/plus/integrations/models/issueReads.js +0 -2
- package/dist/plus/integrations/models/issuesIntegration.d.ts +72 -71
- package/dist/plus/integrations/models/issuesIntegration.js +160 -186
- package/dist/plus/integrations/models/issuesIntegration.js.map +1 -1
- package/dist/plus/integrations/models/pullRequestReads.d.ts +9 -7
- package/dist/plus/integrations/models/pullRequestReads.js +0 -2
- package/dist/plus/integrations/providerFilters.d.ts +8 -20
- package/dist/plus/integrations/providerFilters.js +11 -7
- package/dist/plus/integrations/providerFilters.js.map +1 -1
- package/dist/plus/integrations/providers/accounts.d.ts +7 -5
- package/dist/plus/integrations/providers/accounts.js +21 -31
- package/dist/plus/integrations/providers/accounts.js.map +1 -1
- package/dist/plus/integrations/providers/apiClients.d.ts +13 -10
- package/dist/plus/integrations/providers/apiClients.js +51 -36
- package/dist/plus/integrations/providers/apiClients.js.map +1 -1
- package/dist/plus/integrations/providers/apiConfig.d.ts +31 -29
- package/dist/plus/integrations/providers/apiConfig.js +18 -16
- package/dist/plus/integrations/providers/apiConfig.js.map +1 -1
- package/dist/plus/integrations/providers/azure/azure.d.ts +69 -54
- package/dist/plus/integrations/providers/azure/azure.js +453 -515
- package/dist/plus/integrations/providers/azure/azure.js.map +1 -1
- package/dist/plus/integrations/providers/azure/models.d.ts +258 -229
- package/dist/plus/integrations/providers/azure/models.js +241 -203
- package/dist/plus/integrations/providers/azure/models.js.map +1 -1
- package/dist/plus/integrations/providers/azureDevOps.d.ts +132 -130
- package/dist/plus/integrations/providers/azureDevOps.js +775 -921
- package/dist/plus/integrations/providers/azureDevOps.js.map +1 -1
- package/dist/plus/integrations/providers/bitbucket/bitbucket.d.ts +50 -48
- package/dist/plus/integrations/providers/bitbucket/bitbucket.js +417 -585
- package/dist/plus/integrations/providers/bitbucket/bitbucket.js.map +1 -1
- package/dist/plus/integrations/providers/bitbucket/models.d.ts +179 -179
- package/dist/plus/integrations/providers/bitbucket/models.js +96 -144
- package/dist/plus/integrations/providers/bitbucket/models.js.map +1 -1
- package/dist/plus/integrations/providers/bitbucket-server/models.d.ts +111 -109
- package/dist/plus/integrations/providers/bitbucket-server/models.js +102 -121
- package/dist/plus/integrations/providers/bitbucket-server/models.js.map +1 -1
- package/dist/plus/integrations/providers/bitbucket-server.d.ts +79 -79
- package/dist/plus/integrations/providers/bitbucket-server.js +205 -241
- package/dist/plus/integrations/providers/bitbucket-server.js.map +1 -1
- package/dist/plus/integrations/providers/bitbucket.d.ts +80 -79
- package/dist/plus/integrations/providers/bitbucket.js +390 -477
- package/dist/plus/integrations/providers/bitbucket.js.map +1 -1
- package/dist/plus/integrations/providers/github/github.d.ts +5 -3
- package/dist/plus/integrations/providers/github/github.js +38 -45
- package/dist/plus/integrations/providers/github/github.js.map +1 -1
- package/dist/plus/integrations/providers/github/github.utils.d.ts +8 -5
- package/dist/plus/integrations/providers/github/github.utils.js +7 -4
- package/dist/plus/integrations/providers/github/github.utils.js.map +1 -1
- package/dist/plus/integrations/providers/github/models.d.ts +2 -3
- package/dist/plus/integrations/providers/github/models.js +2 -2
- package/dist/plus/integrations/providers/github.d.ts +174 -172
- package/dist/plus/integrations/providers/github.js +431 -523
- package/dist/plus/integrations/providers/github.js.map +1 -1
- package/dist/plus/integrations/providers/gitlab/gitlab.d.ts +67 -66
- package/dist/plus/integrations/providers/gitlab/gitlab.js +546 -757
- package/dist/plus/integrations/providers/gitlab/gitlab.js.map +1 -1
- package/dist/plus/integrations/providers/gitlab/gitlab.utils.d.ts +7 -5
- package/dist/plus/integrations/providers/gitlab/gitlab.utils.js +45 -46
- package/dist/plus/integrations/providers/gitlab/gitlab.utils.js.map +1 -1
- package/dist/plus/integrations/providers/gitlab/models.d.ts +109 -107
- package/dist/plus/integrations/providers/gitlab/models.js +74 -89
- package/dist/plus/integrations/providers/gitlab/models.js.map +1 -1
- package/dist/plus/integrations/providers/gitlab.d.ts +115 -114
- package/dist/plus/integrations/providers/gitlab.js +440 -528
- package/dist/plus/integrations/providers/gitlab.js.map +1 -1
- package/dist/plus/integrations/providers/issueSorts.d.ts +3 -1
- package/dist/plus/integrations/providers/issueSorts.js +66 -62
- package/dist/plus/integrations/providers/issueSorts.js.map +1 -1
- package/dist/plus/integrations/providers/jira-server.d.ts +90 -0
- package/dist/plus/integrations/providers/jira-server.js +322 -0
- package/dist/plus/integrations/providers/jira-server.js.map +1 -0
- package/dist/plus/integrations/providers/jira.d.ts +41 -39
- package/dist/plus/integrations/providers/jira.js +378 -440
- package/dist/plus/integrations/providers/jira.js.map +1 -1
- package/dist/plus/integrations/providers/jiraIssueByKey.d.ts +3 -1
- package/dist/plus/integrations/providers/jiraIssueByKey.js +85 -89
- package/dist/plus/integrations/providers/jiraIssueByKey.js.map +1 -1
- package/dist/plus/integrations/providers/linear.d.ts +63 -62
- package/dist/plus/integrations/providers/linear.js +315 -358
- package/dist/plus/integrations/providers/linear.js.map +1 -1
- package/dist/plus/integrations/providers/models.d.ts +514 -503
- package/dist/plus/integrations/providers/models.js +818 -856
- package/dist/plus/integrations/providers/models.js.map +1 -1
- package/dist/plus/integrations/providers/providerErrors.d.ts +35 -2
- package/dist/plus/integrations/providers/providerErrors.js +120 -81
- package/dist/plus/integrations/providers/providerErrors.js.map +1 -1
- package/dist/plus/integrations/providers/providersApi.d.ts +299 -271
- package/dist/plus/integrations/providers/providersApi.js +1048 -1001
- package/dist/plus/integrations/providers/providersApi.js.map +1 -1
- package/dist/plus/integrations/providers/pullRequestReviews.d.ts +21 -21
- package/dist/plus/integrations/providers/pullRequestReviews.js +64 -90
- package/dist/plus/integrations/providers/pullRequestReviews.js.map +1 -1
- package/dist/plus/integrations/providers/trello.d.ts +35 -34
- package/dist/plus/integrations/providers/trello.js +136 -143
- package/dist/plus/integrations/providers/trello.js.map +1 -1
- package/dist/plus/integrations/providers/utils/providerPaging.d.ts +4 -2
- package/dist/plus/integrations/providers/utils/providerPaging.js +131 -156
- package/dist/plus/integrations/providers/utils/providerPaging.js.map +1 -1
- package/dist/plus/integrations/providers/utils.d.ts +51 -50
- package/dist/plus/integrations/providers/utils.js +185 -296
- package/dist/plus/integrations/providers/utils.js.map +1 -1
- package/dist/plus/integrations/reads/broaden.d.ts +10 -8
- package/dist/plus/integrations/reads/broaden.js +320 -439
- package/dist/plus/integrations/reads/broaden.js.map +1 -1
- package/dist/plus/integrations/reads/context.d.ts +47 -45
- package/dist/plus/integrations/reads/context.js +0 -2
- package/dist/plus/integrations/reads/counts.d.ts +74 -72
- package/dist/plus/integrations/reads/counts.js +233 -314
- package/dist/plus/integrations/reads/counts.js.map +1 -1
- package/dist/plus/integrations/reads/cursors.d.ts +26 -24
- package/dist/plus/integrations/reads/cursors.js +80 -115
- package/dist/plus/integrations/reads/cursors.js.map +1 -1
- package/dist/plus/integrations/reads/drains.d.ts +24 -23
- package/dist/plus/integrations/reads/drains.js +225 -298
- package/dist/plus/integrations/reads/drains.js.map +1 -1
- package/dist/plus/integrations/reads/filters.d.ts +84 -80
- package/dist/plus/integrations/reads/filters.js +326 -414
- package/dist/plus/integrations/reads/filters.js.map +1 -1
- package/dist/plus/integrations/reads/hierarchy.d.ts +14 -12
- package/dist/plus/integrations/reads/hierarchy.js +248 -332
- package/dist/plus/integrations/reads/hierarchy.js.map +1 -1
- package/dist/plus/integrations/reads/hierarchy.utils.d.ts +11 -9
- package/dist/plus/integrations/reads/hierarchy.utils.js +109 -108
- package/dist/plus/integrations/reads/hierarchy.utils.js.map +1 -1
- package/dist/plus/integrations/reads/issueBatch.d.ts +28 -26
- package/dist/plus/integrations/reads/issueBatch.js +83 -85
- package/dist/plus/integrations/reads/issueBatch.js.map +1 -1
- package/dist/plus/integrations/reads/issueTracker.d.ts +42 -33
- package/dist/plus/integrations/reads/issueTracker.js +265 -386
- package/dist/plus/integrations/reads/issueTracker.js.map +1 -1
- package/dist/plus/integrations/reads/issues.d.ts +50 -47
- package/dist/plus/integrations/reads/issues.js +202 -331
- package/dist/plus/integrations/reads/issues.js.map +1 -1
- package/dist/plus/integrations/reads/ordering.d.ts +32 -30
- package/dist/plus/integrations/reads/ordering.js +47 -43
- package/dist/plus/integrations/reads/ordering.js.map +1 -1
- package/dist/plus/integrations/reads/paging.d.ts +59 -57
- package/dist/plus/integrations/reads/paging.js +244 -261
- package/dist/plus/integrations/reads/paging.js.map +1 -1
- package/dist/plus/integrations/reads/pullRequests.d.ts +37 -35
- package/dist/plus/integrations/reads/pullRequests.js +95 -148
- package/dist/plus/integrations/reads/pullRequests.js.map +1 -1
- package/dist/plus/integrations/reads/resolveRepository.d.ts +15 -13
- package/dist/plus/integrations/reads/resolveRepository.js +147 -229
- package/dist/plus/integrations/reads/resolveRepository.js.map +1 -1
- package/dist/plus/integrations/reads/searchIssues.d.ts +29 -27
- package/dist/plus/integrations/reads/searchIssues.js +104 -153
- package/dist/plus/integrations/reads/searchIssues.js.map +1 -1
- package/dist/plus/integrations/reads/searchPullRequests.d.ts +20 -18
- package/dist/plus/integrations/reads/searchPullRequests.js +91 -113
- package/dist/plus/integrations/reads/searchPullRequests.js.map +1 -1
- package/dist/plus/integrations/reads/sweeps.d.ts +6 -4
- package/dist/plus/integrations/reads/sweeps.js +143 -178
- package/dist/plus/integrations/reads/sweeps.js.map +1 -1
- package/dist/plus/integrations/reads/trackerIssue.d.ts +24 -16
- package/dist/plus/integrations/reads/trackerIssue.js +52 -49
- package/dist/plus/integrations/reads/trackerIssue.js.map +1 -1
- package/dist/plus/integrations/reads/warnings.d.ts +10 -7
- package/dist/plus/integrations/reads/warnings.js +264 -291
- package/dist/plus/integrations/reads/warnings.js.map +1 -1
- package/dist/plus/integrations/results.d.ts +201 -199
- package/dist/plus/integrations/results.js +105 -119
- package/dist/plus/integrations/results.js.map +1 -1
- package/dist/plus/integrations/telemetry.d.ts +7 -5
- package/dist/plus/integrations/telemetry.js +9 -9
- package/dist/plus/integrations/telemetry.js.map +1 -1
- package/dist/plus/integrations/utils/domain.utils.d.ts +21 -0
- package/dist/plus/integrations/utils/domain.utils.js +55 -22
- package/dist/plus/integrations/utils/domain.utils.js.map +1 -1
- package/dist/plus/integrations/utils/integration.utils.d.ts +30 -6
- package/dist/plus/integrations/utils/integration.utils.js +154 -161
- package/dist/plus/integrations/utils/integration.utils.js.map +1 -1
- package/dist/utils/array.d.ts +9 -7
- package/dist/utils/array.js +110 -126
- package/dist/utils/array.js.map +1 -1
- package/dist/utils/base64.d.ts +2 -2
- package/dist/utils/base64.js +2 -2
- package/dist/utils/brand.d.ts +4 -3
- package/dist/utils/brand.js +0 -2
- package/dist/utils/cancellation.d.ts +24 -24
- package/dist/utils/cancellation.js +152 -167
- package/dist/utils/cancellation.js.map +1 -1
- package/dist/utils/charCode.d.ts +31 -37
- package/dist/utils/charCode.js +41 -37
- package/dist/utils/charCode.js.map +1 -1
- package/dist/utils/coalescedRun.d.ts +10 -8
- package/dist/utils/coalescedRun.js +39 -41
- package/dist/utils/coalescedRun.js.map +1 -1
- package/dist/utils/color.d.ts +137 -135
- package/dist/utils/color.js +535 -660
- package/dist/utils/color.js.map +1 -1
- package/dist/utils/counter.d.ts +5 -3
- package/dist/utils/counter.js +19 -17
- package/dist/utils/counter.js.map +1 -1
- package/dist/utils/crypto.d.ts +2 -2
- package/dist/utils/crypto.js +2 -2
- package/dist/utils/date.d.ts +10 -9
- package/dist/utils/date.js +312 -350
- package/dist/utils/date.js.map +1 -1
- package/dist/utils/debounce.d.ts +45 -43
- package/dist/utils/debounce.js +175 -206
- package/dist/utils/debounce.js.map +1 -1
- package/dist/utils/decorators/debounce.d.ts +3 -1
- package/dist/utils/decorators/debounce.js +16 -19
- package/dist/utils/decorators/debounce.js.map +1 -1
- package/dist/utils/decorators/gate.d.ts +13 -11
- package/dist/utils/decorators/gate.js +97 -124
- package/dist/utils/decorators/gate.js.map +1 -1
- package/dist/utils/decorators/log.d.ts +25 -24
- package/dist/utils/decorators/log.js +166 -227
- package/dist/utils/decorators/log.js.map +1 -1
- package/dist/utils/decorators/memoize.d.ts +10 -8
- package/dist/utils/decorators/memoize.js +49 -57
- package/dist/utils/decorators/memoize.js.map +1 -1
- package/dist/utils/decorators/resolver.d.ts +2 -0
- package/dist/utils/decorators/resolver.js +64 -75
- package/dist/utils/decorators/resolver.js.map +1 -1
- package/dist/utils/decorators/sequentialize.d.ts +15 -14
- package/dist/utils/decorators/sequentialize.js +61 -80
- package/dist/utils/decorators/sequentialize.js.map +1 -1
- package/dist/utils/decorators/serializable.d.ts +2 -0
- package/dist/utils/decorators/serializable.js +30 -39
- package/dist/utils/decorators/serializable.js.map +1 -1
- package/dist/utils/dedupedAsyncCache.d.ts +23 -21
- package/dist/utils/dedupedAsyncCache.js +63 -66
- package/dist/utils/dedupedAsyncCache.js.map +1 -1
- package/dist/utils/diff.d.ts +2 -0
- package/dist/utils/diff.js +41 -51
- package/dist/utils/diff.js.map +1 -1
- package/dist/utils/disposable.d.ts +15 -13
- package/dist/utils/disposable.js +71 -80
- package/dist/utils/disposable.js.map +1 -1
- package/dist/utils/dom.d.ts +45 -0
- package/dist/utils/dom.js +106 -0
- package/dist/utils/dom.js.map +1 -0
- package/dist/utils/encoding.d.ts +2 -0
- package/dist/utils/encoding.js +7 -5
- package/dist/utils/encoding.js.map +1 -1
- package/dist/utils/env/browser/base64.d.ts +2 -0
- package/dist/utils/env/browser/base64.js +32 -34
- package/dist/utils/env/browser/base64.js.map +1 -1
- package/dist/utils/env/browser/crypto.d.ts +2 -0
- package/dist/utils/env/browser/crypto.js +17 -13
- package/dist/utils/env/browser/crypto.js.map +1 -1
- package/dist/utils/env/browser/fs.d.ts +2 -0
- package/dist/utils/env/browser/fs.js +6 -2
- package/dist/utils/env/browser/fs.js.map +1 -1
- package/dist/utils/env/browser/hex.d.ts +2 -0
- package/dist/utils/env/browser/hex.js +271 -29
- package/dist/utils/env/browser/hex.js.map +1 -1
- package/dist/utils/env/browser/hrtime.d.ts +2 -0
- package/dist/utils/env/browser/hrtime.js +17 -13
- package/dist/utils/env/browser/hrtime.js.map +1 -1
- package/dist/utils/env/browser/logScope.d.ts +3 -1
- package/dist/utils/env/browser/logScope.js +39 -43
- package/dist/utils/env/browser/logScope.js.map +1 -1
- package/dist/utils/env/browser/md5.d.ts +2 -0
- package/dist/utils/env/browser/md5.js +211 -184
- package/dist/utils/env/browser/md5.js.map +1 -1
- package/dist/utils/env/browser/platform.d.ts +3 -0
- package/dist/utils/env/browser/platform.js +11 -4
- package/dist/utils/env/browser/platform.js.map +1 -1
- package/dist/utils/env/node/base64.d.ts +2 -0
- package/dist/utils/env/node/base64.js +13 -11
- package/dist/utils/env/node/base64.js.map +1 -1
- package/dist/utils/env/node/crypto.d.ts +2 -0
- package/dist/utils/env/node/crypto.js +13 -9
- package/dist/utils/env/node/crypto.js.map +1 -1
- package/dist/utils/env/node/exec.d.ts +66 -65
- package/dist/utils/env/node/exec.js +255 -267
- package/dist/utils/env/node/exec.js.map +1 -1
- package/dist/utils/env/node/fs.d.ts +2 -0
- package/dist/utils/env/node/fs.js +7 -3
- package/dist/utils/env/node/fs.js.map +1 -1
- package/dist/utils/env/node/hex.d.ts +2 -0
- package/dist/utils/env/node/hex.js +10 -6
- package/dist/utils/env/node/hex.js.map +1 -1
- package/dist/utils/env/node/hrtime.d.ts +2 -2
- package/dist/utils/env/node/hrtime.js +2 -2
- package/dist/utils/env/node/logScope.d.ts +3 -1
- package/dist/utils/env/node/logScope.js +52 -42
- package/dist/utils/env/node/logScope.js.map +1 -1
- package/dist/utils/env/node/platform.d.ts +3 -0
- package/dist/utils/env/node/platform.js +11 -4
- package/dist/utils/env/node/platform.js.map +1 -1
- package/dist/utils/error.d.ts +8 -6
- package/dist/utils/error.js +16 -14
- package/dist/utils/error.js.map +1 -1
- package/dist/utils/event.d.ts +27 -25
- package/dist/utils/event.js +141 -170
- package/dist/utils/event.js.map +1 -1
- package/dist/utils/formatter.d.ts +15 -14
- package/dist/utils/formatter.js +96 -129
- package/dist/utils/formatter.js.map +1 -1
- package/dist/utils/fs.d.ts +2 -2
- package/dist/utils/fs.js +2 -2
- package/dist/utils/function.d.ts +5 -6
- package/dist/utils/function.js +73 -90
- package/dist/utils/function.js.map +1 -1
- package/dist/utils/fuzzy.d.ts +18 -16
- package/dist/utils/fuzzy.js +121 -127
- package/dist/utils/fuzzy.js.map +1 -1
- package/dist/utils/gitRefs.d.ts +11 -0
- package/dist/utils/gitRefs.js +21 -0
- package/dist/utils/gitRefs.js.map +1 -0
- package/dist/utils/hash.d.ts +2 -0
- package/dist/utils/hash.js +49 -47
- package/dist/utils/hash.js.map +1 -1
- package/dist/utils/hex.d.ts +2 -2
- package/dist/utils/hex.js +2 -2
- package/dist/utils/hostingServiceType.d.ts +8 -0
- package/dist/utils/hostingServiceType.js +0 -0
- package/dist/utils/hrtime.d.ts +4 -2
- package/dist/utils/hrtime.js +8 -5
- package/dist/utils/hrtime.js.map +1 -1
- package/dist/utils/iterable.d.ts +3 -1
- package/dist/utils/iterable.js +591 -616
- package/dist/utils/iterable.js.map +1 -1
- package/dist/utils/keys/chord.d.ts +27 -25
- package/dist/utils/keys/chord.js +108 -122
- package/dist/utils/keys/chord.js.map +1 -1
- package/dist/utils/keys/keybinding.d.ts +98 -22
- package/dist/utils/keys/keybinding.js +151 -53
- package/dist/utils/keys/keybinding.js.map +1 -1
- package/dist/utils/keys/keymapDispatcher.d.ts +66 -0
- package/dist/utils/keys/keymapDispatcher.js +187 -0
- package/dist/utils/keys/keymapDispatcher.js.map +1 -0
- package/dist/utils/lazy.d.ts +14 -12
- package/dist/utils/lazy.js +35 -36
- package/dist/utils/lazy.js.map +1 -1
- package/dist/utils/loggable.d.ts +3 -1
- package/dist/utils/loggable.js +6 -2
- package/dist/utils/loggable.js.map +1 -1
- package/dist/utils/logger.d.ts +48 -46
- package/dist/utils/logger.js +219 -304
- package/dist/utils/logger.js.map +1 -1
- package/dist/utils/logger.scoped.d.ts +30 -28
- package/dist/utils/logger.scoped.js +133 -147
- package/dist/utils/logger.scoped.js.map +1 -1
- package/dist/utils/lruMap.d.ts +34 -32
- package/dist/utils/lruMap.js +97 -101
- package/dist/utils/lruMap.js.map +1 -1
- package/dist/utils/markdown.d.ts +5 -3
- package/dist/utils/markdown.js +52 -88
- package/dist/utils/markdown.js.map +1 -1
- package/dist/utils/mru.d.ts +13 -11
- package/dist/utils/mru.js +57 -62
- package/dist/utils/mru.js.map +1 -1
- package/dist/utils/object.d.ts +9 -34
- package/dist/utils/object.js +132 -191
- package/dist/utils/object.js.map +1 -1
- package/dist/utils/paging.d.ts +36 -34
- package/dist/utils/paging.js +42 -45
- package/dist/utils/paging.js.map +1 -1
- package/dist/utils/path.d.ts +4 -1
- package/dist/utils/path.js +129 -162
- package/dist/utils/path.js.map +1 -1
- package/dist/utils/pausedOperation.d.ts +42 -0
- package/dist/utils/pausedOperation.js +62 -0
- package/dist/utils/pausedOperation.js.map +1 -0
- package/dist/utils/platform.d.ts +2 -2
- package/dist/utils/platform.js +2 -2
- package/dist/utils/plural.d.ts +21 -0
- package/dist/utils/plural.js +136 -0
- package/dist/utils/plural.js.map +1 -0
- package/dist/utils/promise.d.ts +19 -18
- package/dist/utils/promise.js +323 -360
- package/dist/utils/promise.js.map +1 -1
- package/dist/utils/promiseCache.d.ts +331 -330
- package/dist/utils/promiseCache.js +602 -717
- package/dist/utils/promiseCache.js.map +1 -1
- package/dist/utils/resourceUsage.d.ts +2 -0
- package/dist/utils/resourceUsage.js +0 -2
- package/dist/utils/searchTree.d.ts +51 -49
- package/dist/utils/searchTree.js +306 -396
- package/dist/utils/searchTree.js.map +1 -1
- package/dist/utils/stopwatch.d.ts +33 -32
- package/dist/utils/stopwatch.js +67 -81
- package/dist/utils/stopwatch.js.map +1 -1
- package/dist/utils/string.d.ts +17 -24
- package/dist/utils/string.js +787 -803
- package/dist/utils/string.js.map +1 -1
- package/dist/utils/subscriptionManager.d.ts +15 -14
- package/dist/utils/subscriptionManager.js +36 -33
- package/dist/utils/subscriptionManager.js.map +1 -1
- package/dist/utils/trie.d.ts +64 -62
- package/dist/utils/trie.js +438 -580
- package/dist/utils/trie.js.map +1 -1
- package/dist/utils/types.d.ts +8 -16
- package/dist/utils/types.js +0 -2
- package/dist/utils/uri.d.ts +27 -25
- package/dist/utils/uri.js +42 -42
- package/dist/utils/uri.js.map +1 -1
- package/dist/utils/validation.d.ts +13 -12
- package/dist/utils/validation.js +17 -23
- package/dist/utils/validation.js.map +1 -1
- package/dist/utils/version.d.ts +6 -5
- package/dist/utils/version.js +77 -104
- package/dist/utils/version.js.map +1 -1
- package/docs/integrations.md +101 -24
- package/docs/kepler-read-api-parity.md +15 -12
- package/package.json +18 -8
- package/dist/git/cache.d.ts.map +0 -1
- package/dist/git/context.d.ts.map +0 -1
- package/dist/git/errors.d.ts.map +0 -1
- package/dist/git/features.d.ts.map +0 -1
- package/dist/git/gitHealth.d.ts.map +0 -1
- package/dist/git/models/author.d.ts.map +0 -1
- package/dist/git/models/author.js.map +0 -1
- package/dist/git/models/autolink.d.ts.map +0 -1
- package/dist/git/models/autolink.js.map +0 -1
- package/dist/git/models/blame.d.ts.map +0 -1
- package/dist/git/models/blame.js.map +0 -1
- package/dist/git/models/branch.d.ts.map +0 -1
- package/dist/git/models/commit.d.ts.map +0 -1
- package/dist/git/models/contributor.d.ts.map +0 -1
- package/dist/git/models/defaultBranch.d.ts.map +0 -1
- package/dist/git/models/defaultBranch.js.map +0 -1
- package/dist/git/models/diff.d.ts.map +0 -1
- package/dist/git/models/diff.js.map +0 -1
- package/dist/git/models/file.d.ts.map +0 -1
- package/dist/git/models/file.js.map +0 -1
- package/dist/git/models/fileChange.d.ts.map +0 -1
- package/dist/git/models/fileStatus.d.ts.map +0 -1
- package/dist/git/models/graph.d.ts.map +0 -1
- package/dist/git/models/graphSearch.d.ts.map +0 -1
- package/dist/git/models/graphSearch.js.map +0 -1
- package/dist/git/models/graphSession.d.ts.map +0 -1
- package/dist/git/models/issue.d.ts.map +0 -1
- package/dist/git/models/issueOrPullRequest.d.ts.map +0 -1
- package/dist/git/models/issueOrPullRequest.js.map +0 -1
- package/dist/git/models/lineRange.d.ts.map +0 -1
- package/dist/git/models/lineRange.js.map +0 -1
- package/dist/git/models/log.d.ts.map +0 -1
- package/dist/git/models/log.js.map +0 -1
- package/dist/git/models/mergeConflicts.d.ts.map +0 -1
- package/dist/git/models/mergeConflicts.js.map +0 -1
- package/dist/git/models/patch.d.ts.map +0 -1
- package/dist/git/models/patch.js.map +0 -1
- package/dist/git/models/pausedOperationStatus.d.ts.map +0 -1
- package/dist/git/models/pausedOperationStatus.js.map +0 -1
- package/dist/git/models/pullRequest.d.ts.map +0 -1
- package/dist/git/models/rebase.d.ts.map +0 -1
- package/dist/git/models/rebase.js.map +0 -1
- package/dist/git/models/reference.d.ts.map +0 -1
- package/dist/git/models/reference.js.map +0 -1
- package/dist/git/models/reflog.d.ts.map +0 -1
- package/dist/git/models/remote.d.ts.map +0 -1
- package/dist/git/models/remoteProvider.d.ts.map +0 -1
- package/dist/git/models/remoteResource.d.ts.map +0 -1
- package/dist/git/models/repository.d.ts.map +0 -1
- package/dist/git/models/repositoryChangeEvent.d.ts.map +0 -1
- package/dist/git/models/repositoryIdentities.d.ts.map +0 -1
- package/dist/git/models/repositoryMetadata.d.ts.map +0 -1
- package/dist/git/models/repositoryMetadata.js.map +0 -1
- package/dist/git/models/resourceDescriptor.d.ts.map +0 -1
- package/dist/git/models/resourceDescriptor.js.map +0 -1
- package/dist/git/models/revision.d.ts.map +0 -1
- package/dist/git/models/search.d.ts.map +0 -1
- package/dist/git/models/shortlog.d.ts.map +0 -1
- package/dist/git/models/shortlog.js.map +0 -1
- package/dist/git/models/signature.d.ts.map +0 -1
- package/dist/git/models/signature.js.map +0 -1
- package/dist/git/models/staging.d.ts.map +0 -1
- package/dist/git/models/staging.js.map +0 -1
- package/dist/git/models/stash.d.ts.map +0 -1
- package/dist/git/models/stash.js.map +0 -1
- package/dist/git/models/status.d.ts.map +0 -1
- package/dist/git/models/statusFile.d.ts.map +0 -1
- package/dist/git/models/tag.d.ts.map +0 -1
- package/dist/git/models/tree.d.ts.map +0 -1
- package/dist/git/models/tree.js.map +0 -1
- package/dist/git/models/user.d.ts.map +0 -1
- package/dist/git/models/user.js.map +0 -1
- package/dist/git/models/worktree.d.ts.map +0 -1
- package/dist/git/parsers/diffParser.d.ts.map +0 -1
- package/dist/git/parsers/rebaseTodoParser.d.ts.map +0 -1
- package/dist/git/providers/blame.d.ts.map +0 -1
- package/dist/git/providers/blame.js.map +0 -1
- package/dist/git/providers/branches.d.ts.map +0 -1
- package/dist/git/providers/branches.js.map +0 -1
- package/dist/git/providers/commits.d.ts.map +0 -1
- package/dist/git/providers/commits.js.map +0 -1
- package/dist/git/providers/config.d.ts.map +0 -1
- package/dist/git/providers/config.js.map +0 -1
- package/dist/git/providers/contributors.d.ts.map +0 -1
- package/dist/git/providers/contributors.js.map +0 -1
- package/dist/git/providers/diff.d.ts.map +0 -1
- package/dist/git/providers/diff.js.map +0 -1
- package/dist/git/providers/graph.d.ts.map +0 -1
- package/dist/git/providers/graph.js.map +0 -1
- package/dist/git/providers/maintenance.d.ts.map +0 -1
- package/dist/git/providers/maintenance.js.map +0 -1
- package/dist/git/providers/operations.d.ts.map +0 -1
- package/dist/git/providers/operations.js.map +0 -1
- package/dist/git/providers/patch.d.ts.map +0 -1
- package/dist/git/providers/patch.js.map +0 -1
- package/dist/git/providers/pausedOperations.d.ts.map +0 -1
- package/dist/git/providers/pausedOperations.js.map +0 -1
- package/dist/git/providers/provider.d.ts.map +0 -1
- package/dist/git/providers/provider.js.map +0 -1
- package/dist/git/providers/refs.d.ts.map +0 -1
- package/dist/git/providers/refs.js.map +0 -1
- package/dist/git/providers/remotes.d.ts.map +0 -1
- package/dist/git/providers/remotes.js.map +0 -1
- package/dist/git/providers/revision.d.ts.map +0 -1
- package/dist/git/providers/revision.js.map +0 -1
- package/dist/git/providers/shared/remotes.d.ts.map +0 -1
- package/dist/git/providers/staging.d.ts.map +0 -1
- package/dist/git/providers/staging.js.map +0 -1
- package/dist/git/providers/stash.d.ts.map +0 -1
- package/dist/git/providers/stash.js.map +0 -1
- package/dist/git/providers/status.d.ts.map +0 -1
- package/dist/git/providers/status.js.map +0 -1
- package/dist/git/providers/tags.d.ts.map +0 -1
- package/dist/git/providers/tags.js.map +0 -1
- package/dist/git/providers/types.d.ts.map +0 -1
- package/dist/git/providers/types.js.map +0 -1
- package/dist/git/providers/worktrees.d.ts.map +0 -1
- package/dist/git/providers/worktrees.js.map +0 -1
- package/dist/git/remotes/azure-devops.d.ts.map +0 -1
- package/dist/git/remotes/bitbucket-server.d.ts.map +0 -1
- package/dist/git/remotes/bitbucket.d.ts.map +0 -1
- package/dist/git/remotes/custom.d.ts.map +0 -1
- package/dist/git/remotes/gerrit.d.ts.map +0 -1
- package/dist/git/remotes/gitea.d.ts.map +0 -1
- package/dist/git/remotes/github.d.ts.map +0 -1
- package/dist/git/remotes/gitlab.d.ts.map +0 -1
- package/dist/git/remotes/google-source.d.ts.map +0 -1
- package/dist/git/remotes/matcher.d.ts.map +0 -1
- package/dist/git/repositoryService.d.ts.map +0 -1
- package/dist/git/run.types.d.ts.map +0 -1
- package/dist/git/run.types.js.map +0 -1
- package/dist/git/service.d.ts.map +0 -1
- package/dist/git/utils/autolink.utils.d.ts.map +0 -1
- package/dist/git/utils/blame.utils.d.ts.map +0 -1
- package/dist/git/utils/branch.utils.d.ts.map +0 -1
- package/dist/git/utils/commit.utils.d.ts.map +0 -1
- package/dist/git/utils/config.utils.d.ts.map +0 -1
- package/dist/git/utils/conflictResolution.utils.d.ts.map +0 -1
- package/dist/git/utils/contributor.utils.d.ts.map +0 -1
- package/dist/git/utils/fetch.utils.d.ts.map +0 -1
- package/dist/git/utils/fileStatus.utils.d.ts.map +0 -1
- package/dist/git/utils/graph.utils.d.ts.map +0 -1
- package/dist/git/utils/issue.utils.d.ts.map +0 -1
- package/dist/git/utils/issueOrPullRequest.utils.d.ts.map +0 -1
- package/dist/git/utils/mergeConflicts.utils.d.ts.map +0 -1
- package/dist/git/utils/pausedOperationStatus.utils.d.ts.map +0 -1
- package/dist/git/utils/pullRequest.utils.d.ts.map +0 -1
- package/dist/git/utils/reachability.utils.d.ts.map +0 -1
- package/dist/git/utils/rebase.utils.d.ts.map +0 -1
- package/dist/git/utils/reference.utils.d.ts.map +0 -1
- package/dist/git/utils/remote.utils.d.ts.map +0 -1
- package/dist/git/utils/repository.utils.d.ts.map +0 -1
- package/dist/git/utils/resourceDescriptor.utils.d.ts.map +0 -1
- package/dist/git/utils/revision.utils.d.ts.map +0 -1
- package/dist/git/utils/search.utils.d.ts.map +0 -1
- package/dist/git/utils/sorting.d.ts.map +0 -1
- package/dist/git/utils/sshKey.utils.d.ts.map +0 -1
- package/dist/git/utils/status.utils.d.ts.map +0 -1
- package/dist/git/utils/statusFile.utils.d.ts.map +0 -1
- package/dist/git/utils/tag.utils.d.ts.map +0 -1
- package/dist/git/utils/tooltip.utils.d.ts.map +0 -1
- package/dist/git/utils/uriAuthority.d.ts.map +0 -1
- package/dist/git/utils/user.utils.d.ts.map +0 -1
- package/dist/git/utils/worktree.utils.d.ts.map +0 -1
- package/dist/git/watching/changeEvent.d.ts.map +0 -1
- package/dist/git/watching/classifyChange.d.ts.map +0 -1
- package/dist/git/watching/gitIgnoreFilter.d.ts.map +0 -1
- package/dist/git/watching/initWatcher.d.ts.map +0 -1
- package/dist/git/watching/provider.d.ts.map +0 -1
- package/dist/git/watching/provider.js.map +0 -1
- package/dist/git/watching/watchGroup.d.ts.map +0 -1
- package/dist/git/watching/watchService.d.ts.map +0 -1
- package/dist/git/watching/watchSession.d.ts.map +0 -1
- package/dist/git/watching/watcherPatterns.d.ts.map +0 -1
- package/dist/git-cli/cliGitProvider.d.ts.map +0 -1
- package/dist/git-cli/exec/exec.d.ts.map +0 -1
- package/dist/git-cli/exec/exec.errors.d.ts.map +0 -1
- package/dist/git-cli/exec/exec.errors.js.map +0 -1
- package/dist/git-cli/exec/exec.js.map +0 -1
- package/dist/git-cli/exec/exec.types.d.ts.map +0 -1
- package/dist/git-cli/exec/exec.types.js.map +0 -1
- package/dist/git-cli/exec/features.d.ts.map +0 -1
- package/dist/git-cli/exec/features.js.map +0 -1
- package/dist/git-cli/exec/git.d.ts.map +0 -1
- package/dist/git-cli/exec/gitQueue.d.ts.map +0 -1
- package/dist/git-cli/exec/locator.d.ts.map +0 -1
- package/dist/git-cli/parsers/blameParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/indexParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/logParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/mergeTreeParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/refParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/reflogParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/remoteParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/shortlogParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/signatureParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/sshSignatureParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/statusParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/treeParser.d.ts.map +0 -1
- package/dist/git-cli/parsers/worktreeParser.d.ts.map +0 -1
- package/dist/git-cli/providers/blame.d.ts.map +0 -1
- package/dist/git-cli/providers/branches.d.ts.map +0 -1
- package/dist/git-cli/providers/commitFilesetUtils.d.ts.map +0 -1
- package/dist/git-cli/providers/commits.d.ts.map +0 -1
- package/dist/git-cli/providers/config.d.ts.map +0 -1
- package/dist/git-cli/providers/contributors.d.ts.map +0 -1
- package/dist/git-cli/providers/diff.d.ts.map +0 -1
- package/dist/git-cli/providers/graph.d.ts.map +0 -1
- package/dist/git-cli/providers/maintenance.d.ts.map +0 -1
- package/dist/git-cli/providers/operations.d.ts.map +0 -1
- package/dist/git-cli/providers/patch.d.ts.map +0 -1
- package/dist/git-cli/providers/pausedOperations.d.ts.map +0 -1
- package/dist/git-cli/providers/refs.d.ts.map +0 -1
- package/dist/git-cli/providers/remotes.d.ts.map +0 -1
- package/dist/git-cli/providers/revision.d.ts.map +0 -1
- package/dist/git-cli/providers/staging.d.ts.map +0 -1
- package/dist/git-cli/providers/stash.d.ts.map +0 -1
- package/dist/git-cli/providers/status.d.ts.map +0 -1
- package/dist/git-cli/providers/tags.d.ts.map +0 -1
- package/dist/git-cli/providers/worktrees.d.ts.map +0 -1
- package/dist/git-cli/service.d.ts.map +0 -1
- package/dist/ipc/discovery.d.ts.map +0 -1
- package/dist/ipc/ipcServer.d.ts.map +0 -1
- package/dist/plus/agents/agentCapabilities.d.ts.map +0 -1
- package/dist/plus/agents/providers/claudeCodeTranscript.d.ts.map +0 -1
- package/dist/plus/agents/providers/gkAgentProvider.d.ts.map +0 -1
- package/dist/plus/agents/sanitizePrompt.d.ts.map +0 -1
- package/dist/plus/agents/stateMachine.d.ts.map +0 -1
- package/dist/plus/agents/types.d.ts.map +0 -1
- package/dist/plus/ai/constants.d.ts.map +0 -1
- package/dist/plus/ai/errors.d.ts.map +0 -1
- package/dist/plus/ai/models/conversation.d.ts.map +0 -1
- package/dist/plus/ai/models/model.d.ts.map +0 -1
- package/dist/plus/ai/models/promptTemplates.d.ts.map +0 -1
- package/dist/plus/ai/models/promptTemplates.js.map +0 -1
- package/dist/plus/ai/models/provider.d.ts.map +0 -1
- package/dist/plus/ai/models/provider.js.map +0 -1
- package/dist/plus/ai/models/results.d.ts.map +0 -1
- package/dist/plus/ai/models/results.js.map +0 -1
- package/dist/plus/ai/prompts.d.ts.map +0 -1
- package/dist/plus/ai/providers/anthropicProvider.d.ts.map +0 -1
- package/dist/plus/ai/providers/azureProvider.d.ts.map +0 -1
- package/dist/plus/ai/providers/context.d.ts.map +0 -1
- package/dist/plus/ai/providers/context.js.map +0 -1
- package/dist/plus/ai/providers/deepSeekProvider.d.ts.map +0 -1
- package/dist/plus/ai/providers/geminiProvider.d.ts.map +0 -1
- package/dist/plus/ai/providers/gitkrakenProvider.d.ts.map +0 -1
- package/dist/plus/ai/providers/huggingFaceProvider.d.ts.map +0 -1
- package/dist/plus/ai/providers/mistralProvider.d.ts.map +0 -1
- package/dist/plus/ai/providers/ollamaProvider.d.ts.map +0 -1
- package/dist/plus/ai/providers/openAICompatibleProvider.d.ts.map +0 -1
- package/dist/plus/ai/providers/openAICompatibleProviderBase.d.ts.map +0 -1
- package/dist/plus/ai/providers/openRouterProvider.d.ts.map +0 -1
- package/dist/plus/ai/providers/openaiProvider.d.ts.map +0 -1
- package/dist/plus/ai/providers/responseFormatCache.d.ts.map +0 -1
- package/dist/plus/ai/providers/xaiProvider.d.ts.map +0 -1
- package/dist/plus/ai/utils/ai.utils.d.ts.map +0 -1
- package/dist/plus/ai/utils/results.utils.d.ts.map +0 -1
- package/dist/plus/ai/utils/truncation.utils.d.ts.map +0 -1
- package/dist/plus/git-github/api/config.d.ts.map +0 -1
- package/dist/plus/git-github/api/github.d.ts.map +0 -1
- package/dist/plus/git-github/api/github.utils.d.ts.map +0 -1
- package/dist/plus/git-github/api/issueSearchQuery.d.ts.map +0 -1
- package/dist/plus/git-github/api/pullRequestSearchQuery.d.ts.map +0 -1
- package/dist/plus/git-github/api/token.d.ts.map +0 -1
- package/dist/plus/git-github/api/token.js.map +0 -1
- package/dist/plus/git-github/api/tokenUtils.d.ts.map +0 -1
- package/dist/plus/git-github/api/types.d.ts.map +0 -1
- package/dist/plus/git-github/api/types.js.map +0 -1
- package/dist/plus/git-github/context.d.ts.map +0 -1
- package/dist/plus/git-github/models.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/blame.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/branches.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/commits.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/config.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/contributors.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/diff.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/graph.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/refs.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/remotes.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/revision.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/status.d.ts.map +0 -1
- package/dist/plus/git-github/providers/github/tags.d.ts.map +0 -1
- package/dist/plus/git-github/providers/githubGitProvider.d.ts.map +0 -1
- package/dist/plus/git-github/providers/githubProvider.d.ts.map +0 -1
- package/dist/plus/git-github/providers/githubProvider.js.map +0 -1
- package/dist/plus/integrations/authentication/cloudIntegrationService.d.ts.map +0 -1
- package/dist/plus/integrations/authentication/configuredIntegrationService.d.ts.map +0 -1
- package/dist/plus/integrations/authentication/integrationAuthenticationProvider.d.ts.map +0 -1
- package/dist/plus/integrations/authentication/integrationAuthenticationService.d.ts.map +0 -1
- package/dist/plus/integrations/authentication/manualTokenProvider.d.ts.map +0 -1
- package/dist/plus/integrations/authentication/models.d.ts.map +0 -1
- package/dist/plus/integrations/authentication/rejectedTokenTracker.d.ts.map +0 -1
- package/dist/plus/integrations/collectionMetadata.d.ts.map +0 -1
- package/dist/plus/integrations/constants.d.ts.map +0 -1
- package/dist/plus/integrations/context.d.ts.map +0 -1
- package/dist/plus/integrations/context.js.map +0 -1
- package/dist/plus/integrations/errors.d.ts.map +0 -1
- package/dist/plus/integrations/index.d.ts.map +0 -1
- package/dist/plus/integrations/integrationService.d.ts.map +0 -1
- package/dist/plus/integrations/lite.d.ts.map +0 -1
- package/dist/plus/integrations/manager.d.ts.map +0 -1
- package/dist/plus/integrations/manager.js.map +0 -1
- package/dist/plus/integrations/models/gitHostIntegration.d.ts.map +0 -1
- package/dist/plus/integrations/models/integration.d.ts.map +0 -1
- package/dist/plus/integrations/models/issueCache.d.ts.map +0 -1
- package/dist/plus/integrations/models/issueReads.d.ts.map +0 -1
- package/dist/plus/integrations/models/issueReads.js.map +0 -1
- package/dist/plus/integrations/models/issuesIntegration.d.ts.map +0 -1
- package/dist/plus/integrations/models/pullRequestReads.d.ts.map +0 -1
- package/dist/plus/integrations/models/pullRequestReads.js.map +0 -1
- package/dist/plus/integrations/providerFilters.d.ts.map +0 -1
- package/dist/plus/integrations/providers/accounts.d.ts.map +0 -1
- package/dist/plus/integrations/providers/apiClients.d.ts.map +0 -1
- package/dist/plus/integrations/providers/apiConfig.d.ts.map +0 -1
- package/dist/plus/integrations/providers/azure/azure.d.ts.map +0 -1
- package/dist/plus/integrations/providers/azure/models.d.ts.map +0 -1
- package/dist/plus/integrations/providers/azureDevOps.d.ts.map +0 -1
- package/dist/plus/integrations/providers/bitbucket/bitbucket.d.ts.map +0 -1
- package/dist/plus/integrations/providers/bitbucket/models.d.ts.map +0 -1
- package/dist/plus/integrations/providers/bitbucket-server/models.d.ts.map +0 -1
- package/dist/plus/integrations/providers/bitbucket-server.d.ts.map +0 -1
- package/dist/plus/integrations/providers/bitbucket.d.ts.map +0 -1
- package/dist/plus/integrations/providers/github/github.d.ts.map +0 -1
- package/dist/plus/integrations/providers/github/github.utils.d.ts.map +0 -1
- package/dist/plus/integrations/providers/github/models.d.ts.map +0 -1
- package/dist/plus/integrations/providers/github/models.js.map +0 -1
- package/dist/plus/integrations/providers/github.d.ts.map +0 -1
- package/dist/plus/integrations/providers/gitlab/gitlab.d.ts.map +0 -1
- package/dist/plus/integrations/providers/gitlab/gitlab.utils.d.ts.map +0 -1
- package/dist/plus/integrations/providers/gitlab/models.d.ts.map +0 -1
- package/dist/plus/integrations/providers/gitlab.d.ts.map +0 -1
- package/dist/plus/integrations/providers/issueSorts.d.ts.map +0 -1
- package/dist/plus/integrations/providers/jira.d.ts.map +0 -1
- package/dist/plus/integrations/providers/jiraIssueByKey.d.ts.map +0 -1
- package/dist/plus/integrations/providers/linear.d.ts.map +0 -1
- package/dist/plus/integrations/providers/models.d.ts.map +0 -1
- package/dist/plus/integrations/providers/providerErrors.d.ts.map +0 -1
- package/dist/plus/integrations/providers/providersApi.d.ts.map +0 -1
- package/dist/plus/integrations/providers/pullRequestReviews.d.ts.map +0 -1
- package/dist/plus/integrations/providers/trello.d.ts.map +0 -1
- package/dist/plus/integrations/providers/utils/providerPaging.d.ts.map +0 -1
- package/dist/plus/integrations/providers/utils.d.ts.map +0 -1
- package/dist/plus/integrations/reads/broaden.d.ts.map +0 -1
- package/dist/plus/integrations/reads/context.d.ts.map +0 -1
- package/dist/plus/integrations/reads/context.js.map +0 -1
- package/dist/plus/integrations/reads/counts.d.ts.map +0 -1
- package/dist/plus/integrations/reads/cursors.d.ts.map +0 -1
- package/dist/plus/integrations/reads/drains.d.ts.map +0 -1
- package/dist/plus/integrations/reads/filters.d.ts.map +0 -1
- package/dist/plus/integrations/reads/hierarchy.d.ts.map +0 -1
- package/dist/plus/integrations/reads/hierarchy.utils.d.ts.map +0 -1
- package/dist/plus/integrations/reads/issueBatch.d.ts.map +0 -1
- package/dist/plus/integrations/reads/issueTracker.d.ts.map +0 -1
- package/dist/plus/integrations/reads/issues.d.ts.map +0 -1
- package/dist/plus/integrations/reads/ordering.d.ts.map +0 -1
- package/dist/plus/integrations/reads/paging.d.ts.map +0 -1
- package/dist/plus/integrations/reads/pullRequests.d.ts.map +0 -1
- package/dist/plus/integrations/reads/resolveRepository.d.ts.map +0 -1
- package/dist/plus/integrations/reads/searchIssues.d.ts.map +0 -1
- package/dist/plus/integrations/reads/searchPullRequests.d.ts.map +0 -1
- package/dist/plus/integrations/reads/sweeps.d.ts.map +0 -1
- package/dist/plus/integrations/reads/trackerIssue.d.ts.map +0 -1
- package/dist/plus/integrations/reads/warnings.d.ts.map +0 -1
- package/dist/plus/integrations/results.d.ts.map +0 -1
- package/dist/plus/integrations/telemetry.d.ts.map +0 -1
- package/dist/plus/integrations/utils/domain.utils.d.ts.map +0 -1
- package/dist/plus/integrations/utils/integration.utils.d.ts.map +0 -1
- package/dist/utils/array.d.ts.map +0 -1
- package/dist/utils/base64.d.ts.map +0 -1
- package/dist/utils/base64.js.map +0 -1
- package/dist/utils/brand.d.ts.map +0 -1
- package/dist/utils/brand.js.map +0 -1
- package/dist/utils/cancellation.d.ts.map +0 -1
- package/dist/utils/charCode.d.ts.map +0 -1
- package/dist/utils/coalescedRun.d.ts.map +0 -1
- package/dist/utils/color.d.ts.map +0 -1
- package/dist/utils/counter.d.ts.map +0 -1
- package/dist/utils/crypto.d.ts.map +0 -1
- package/dist/utils/crypto.js.map +0 -1
- package/dist/utils/date.d.ts.map +0 -1
- package/dist/utils/debounce.d.ts.map +0 -1
- package/dist/utils/decorators/debounce.d.ts.map +0 -1
- package/dist/utils/decorators/gate.d.ts.map +0 -1
- package/dist/utils/decorators/log.d.ts.map +0 -1
- package/dist/utils/decorators/memoize.d.ts.map +0 -1
- package/dist/utils/decorators/resolver.d.ts.map +0 -1
- package/dist/utils/decorators/sequentialize.d.ts.map +0 -1
- package/dist/utils/decorators/serializable.d.ts.map +0 -1
- package/dist/utils/dedupedAsyncCache.d.ts.map +0 -1
- package/dist/utils/diff.d.ts.map +0 -1
- package/dist/utils/disposable.d.ts.map +0 -1
- package/dist/utils/encoding.d.ts.map +0 -1
- package/dist/utils/env/browser/base64.d.ts.map +0 -1
- package/dist/utils/env/browser/crypto.d.ts.map +0 -1
- package/dist/utils/env/browser/fs.d.ts.map +0 -1
- package/dist/utils/env/browser/hex.d.ts.map +0 -1
- package/dist/utils/env/browser/hrtime.d.ts.map +0 -1
- package/dist/utils/env/browser/logScope.d.ts.map +0 -1
- package/dist/utils/env/browser/md5.d.ts.map +0 -1
- package/dist/utils/env/browser/platform.d.ts.map +0 -1
- package/dist/utils/env/node/base64.d.ts.map +0 -1
- package/dist/utils/env/node/crypto.d.ts.map +0 -1
- package/dist/utils/env/node/exec.d.ts.map +0 -1
- package/dist/utils/env/node/fs.d.ts.map +0 -1
- package/dist/utils/env/node/hex.d.ts.map +0 -1
- package/dist/utils/env/node/hrtime.d.ts.map +0 -1
- package/dist/utils/env/node/hrtime.js.map +0 -1
- package/dist/utils/env/node/logScope.d.ts.map +0 -1
- package/dist/utils/env/node/platform.d.ts.map +0 -1
- package/dist/utils/error.d.ts.map +0 -1
- package/dist/utils/event.d.ts.map +0 -1
- package/dist/utils/formatter.d.ts.map +0 -1
- package/dist/utils/fs.d.ts.map +0 -1
- package/dist/utils/fs.js.map +0 -1
- package/dist/utils/function.d.ts.map +0 -1
- package/dist/utils/fuzzy.d.ts.map +0 -1
- package/dist/utils/hash.d.ts.map +0 -1
- package/dist/utils/hex.d.ts.map +0 -1
- package/dist/utils/hex.js.map +0 -1
- package/dist/utils/hrtime.d.ts.map +0 -1
- package/dist/utils/iterable.d.ts.map +0 -1
- package/dist/utils/keys/chord.d.ts.map +0 -1
- package/dist/utils/keys/keybinding.d.ts.map +0 -1
- package/dist/utils/lazy.d.ts.map +0 -1
- package/dist/utils/loggable.d.ts.map +0 -1
- package/dist/utils/logger.d.ts.map +0 -1
- package/dist/utils/logger.scoped.d.ts.map +0 -1
- package/dist/utils/lruMap.d.ts.map +0 -1
- package/dist/utils/markdown.d.ts.map +0 -1
- package/dist/utils/mru.d.ts.map +0 -1
- package/dist/utils/object.d.ts.map +0 -1
- package/dist/utils/paging.d.ts.map +0 -1
- package/dist/utils/path.d.ts.map +0 -1
- package/dist/utils/platform.d.ts.map +0 -1
- package/dist/utils/platform.js.map +0 -1
- package/dist/utils/promise.d.ts.map +0 -1
- package/dist/utils/promiseCache.d.ts.map +0 -1
- package/dist/utils/resourceUsage.d.ts.map +0 -1
- package/dist/utils/resourceUsage.js.map +0 -1
- package/dist/utils/searchTree.d.ts.map +0 -1
- package/dist/utils/stopwatch.d.ts.map +0 -1
- package/dist/utils/string.d.ts.map +0 -1
- package/dist/utils/subscriptionManager.d.ts.map +0 -1
- package/dist/utils/trie.d.ts.map +0 -1
- package/dist/utils/types.d.ts.map +0 -1
- package/dist/utils/types.js.map +0 -1
- package/dist/utils/uri.d.ts.map +0 -1
- package/dist/utils/validation.d.ts.map +0 -1
- package/dist/utils/version.d.ts.map +0 -1
- package/src/git/cache.ts +0 -1859
- package/src/git/context.ts +0 -301
- package/src/git/errors.ts +0 -1168
- package/src/git/features.ts +0 -98
- package/src/git/gitHealth.ts +0 -522
- package/src/git/models/author.ts +0 -19
- package/src/git/models/autolink.ts +0 -59
- package/src/git/models/blame.ts +0 -46
- package/src/git/models/branch.ts +0 -237
- package/src/git/models/commit.ts +0 -673
- package/src/git/models/contributor.ts +0 -84
- package/src/git/models/defaultBranch.ts +0 -6
- package/src/git/models/diff.ts +0 -74
- package/src/git/models/file.ts +0 -29
- package/src/git/models/fileChange.ts +0 -82
- package/src/git/models/fileStatus.ts +0 -36
- package/src/git/models/graph.ts +0 -444
- package/src/git/models/graphSearch.ts +0 -53
- package/src/git/models/graphSession.ts +0 -102
- package/src/git/models/issue.ts +0 -258
- package/src/git/models/issueOrPullRequest.ts +0 -20
- package/src/git/models/lineRange.ts +0 -7
- package/src/git/models/log.ts +0 -21
- package/src/git/models/mergeConflicts.ts +0 -19
- package/src/git/models/patch.ts +0 -25
- package/src/git/models/pausedOperationStatus.ts +0 -63
- package/src/git/models/pullRequest.ts +0 -353
- package/src/git/models/rebase.ts +0 -60
- package/src/git/models/reference.ts +0 -80
- package/src/git/models/reflog.ts +0 -88
- package/src/git/models/remote.ts +0 -100
- package/src/git/models/remoteProvider.ts +0 -291
- package/src/git/models/remoteResource.ts +0 -87
- package/src/git/models/repository.ts +0 -510
- package/src/git/models/repositoryChangeEvent.ts +0 -30
- package/src/git/models/repositoryIdentities.ts +0 -99
- package/src/git/models/repositoryMetadata.ts +0 -12
- package/src/git/models/resourceDescriptor.ts +0 -28
- package/src/git/models/revision.ts +0 -12
- package/src/git/models/search.ts +0 -138
- package/src/git/models/shortlog.ts +0 -6
- package/src/git/models/signature.ts +0 -45
- package/src/git/models/staging.ts +0 -27
- package/src/git/models/stash.ts +0 -6
- package/src/git/models/status.ts +0 -246
- package/src/git/models/statusFile.ts +0 -131
- package/src/git/models/tag.ts +0 -76
- package/src/git/models/tree.ts +0 -10
- package/src/git/models/user.ts +0 -7
- package/src/git/models/worktree.ts +0 -160
- package/src/git/parsers/diffParser.ts +0 -648
- package/src/git/parsers/rebaseTodoParser.ts +0 -169
- package/src/git/providers/blame.ts +0 -40
- package/src/git/providers/branches.ts +0 -143
- package/src/git/providers/commits.ts +0 -174
- package/src/git/providers/config.ts +0 -167
- package/src/git/providers/contributors.ts +0 -34
- package/src/git/providers/diff.ts +0 -133
- package/src/git/providers/graph.ts +0 -95
- package/src/git/providers/maintenance.ts +0 -224
- package/src/git/providers/operations.ts +0 -164
- package/src/git/providers/patch.ts +0 -31
- package/src/git/providers/pausedOperations.ts +0 -23
- package/src/git/providers/provider.ts +0 -64
- package/src/git/providers/refs.ts +0 -68
- package/src/git/providers/remotes.ts +0 -33
- package/src/git/providers/revision.ts +0 -32
- package/src/git/providers/shared/remotes.ts +0 -95
- package/src/git/providers/staging.ts +0 -36
- package/src/git/providers/stash.ts +0 -51
- package/src/git/providers/status.ts +0 -48
- package/src/git/providers/tags.ts +0 -29
- package/src/git/providers/types.ts +0 -33
- package/src/git/providers/worktrees.ts +0 -37
- package/src/git/remotes/azure-devops.ts +0 -307
- package/src/git/remotes/bitbucket-server.ts +0 -189
- package/src/git/remotes/bitbucket.ts +0 -142
- package/src/git/remotes/custom.ts +0 -162
- package/src/git/remotes/gerrit.ts +0 -186
- package/src/git/remotes/gitea.ts +0 -184
- package/src/git/remotes/github.ts +0 -236
- package/src/git/remotes/gitlab.ts +0 -270
- package/src/git/remotes/google-source.ts +0 -51
- package/src/git/remotes/matcher.ts +0 -215
- package/src/git/repositoryService.ts +0 -180
- package/src/git/run.types.ts +0 -156
- package/src/git/service.ts +0 -369
- package/src/git/utils/autolink.utils.ts +0 -202
- package/src/git/utils/blame.utils.ts +0 -298
- package/src/git/utils/branch.utils.ts +0 -165
- package/src/git/utils/commit.utils.ts +0 -89
- package/src/git/utils/config.utils.ts +0 -8
- package/src/git/utils/conflictResolution.utils.ts +0 -157
- package/src/git/utils/contributor.utils.ts +0 -105
- package/src/git/utils/fetch.utils.ts +0 -48
- package/src/git/utils/fileStatus.utils.ts +0 -62
- package/src/git/utils/graph.utils.ts +0 -46
- package/src/git/utils/issue.utils.ts +0 -177
- package/src/git/utils/issueOrPullRequest.utils.ts +0 -23
- package/src/git/utils/mergeConflicts.utils.ts +0 -21
- package/src/git/utils/pausedOperationStatus.utils.ts +0 -184
- package/src/git/utils/pullRequest.utils.ts +0 -244
- package/src/git/utils/reachability.utils.ts +0 -180
- package/src/git/utils/rebase.utils.ts +0 -128
- package/src/git/utils/reference.utils.ts +0 -267
- package/src/git/utils/remote.utils.ts +0 -146
- package/src/git/utils/repository.utils.ts +0 -18
- package/src/git/utils/resourceDescriptor.utils.ts +0 -26
- package/src/git/utils/revision.utils.ts +0 -149
- package/src/git/utils/search.utils.ts +0 -624
- package/src/git/utils/sorting.ts +0 -329
- package/src/git/utils/sshKey.utils.ts +0 -30
- package/src/git/utils/status.utils.ts +0 -115
- package/src/git/utils/statusFile.utils.ts +0 -182
- package/src/git/utils/tag.utils.ts +0 -17
- package/src/git/utils/tooltip.utils.ts +0 -37
- package/src/git/utils/uriAuthority.ts +0 -34
- package/src/git/utils/user.utils.ts +0 -20
- package/src/git/utils/worktree.utils.ts +0 -21
- package/src/git/watching/changeEvent.ts +0 -95
- package/src/git/watching/classifyChange.ts +0 -104
- package/src/git/watching/gitIgnoreFilter.ts +0 -134
- package/src/git/watching/initWatcher.ts +0 -81
- package/src/git/watching/provider.ts +0 -24
- package/src/git/watching/watchGroup.ts +0 -185
- package/src/git/watching/watchService.ts +0 -430
- package/src/git/watching/watchSession.ts +0 -439
- package/src/git/watching/watcherPatterns.ts +0 -51
- package/src/git-cli/cliGitProvider.ts +0 -461
- package/src/git-cli/exec/exec.errors.ts +0 -1
- package/src/git-cli/exec/exec.ts +0 -11
- package/src/git-cli/exec/exec.types.ts +0 -8
- package/src/git-cli/exec/features.ts +0 -2
- package/src/git-cli/exec/git.ts +0 -1371
- package/src/git-cli/exec/gitQueue.ts +0 -326
- package/src/git-cli/exec/locator.ts +0 -157
- package/src/git-cli/parsers/blameParser.ts +0 -374
- package/src/git-cli/parsers/indexParser.ts +0 -192
- package/src/git-cli/parsers/logParser.ts +0 -1365
- package/src/git-cli/parsers/mergeTreeParser.ts +0 -22
- package/src/git-cli/parsers/refParser.ts +0 -110
- package/src/git-cli/parsers/reflogParser.ts +0 -153
- package/src/git-cli/parsers/remoteParser.ts +0 -95
- package/src/git-cli/parsers/shortlogParser.ts +0 -59
- package/src/git-cli/parsers/signatureParser.ts +0 -162
- package/src/git-cli/parsers/sshSignatureParser.ts +0 -85
- package/src/git-cli/parsers/statusParser.ts +0 -209
- package/src/git-cli/parsers/treeParser.ts +0 -61
- package/src/git-cli/parsers/worktreeParser.ts +0 -111
- package/src/git-cli/providers/blame.ts +0 -598
- package/src/git-cli/providers/branches.ts +0 -1931
- package/src/git-cli/providers/commitFilesetUtils.ts +0 -45
- package/src/git-cli/providers/commits.ts +0 -1856
- package/src/git-cli/providers/config.ts +0 -1025
- package/src/git-cli/providers/contributors.ts +0 -360
- package/src/git-cli/providers/diff.ts +0 -1172
- package/src/git-cli/providers/graph.ts +0 -2237
- package/src/git-cli/providers/maintenance.ts +0 -2599
- package/src/git-cli/providers/operations.ts +0 -1016
- package/src/git-cli/providers/patch.ts +0 -305
- package/src/git-cli/providers/pausedOperations.ts +0 -670
- package/src/git-cli/providers/refs.ts +0 -486
- package/src/git-cli/providers/remotes.ts +0 -115
- package/src/git-cli/providers/revision.ts +0 -383
- package/src/git-cli/providers/staging.ts +0 -210
- package/src/git-cli/providers/stash.ts +0 -577
- package/src/git-cli/providers/status.ts +0 -568
- package/src/git-cli/providers/tags.ts +0 -224
- package/src/git-cli/providers/worktrees.ts +0 -285
- package/src/git-cli/service.ts +0 -82
- package/src/ipc/discovery.ts +0 -186
- package/src/ipc/ipcServer.ts +0 -171
- package/src/plus/agents/agentCapabilities.ts +0 -286
- package/src/plus/agents/providers/claudeCodeTranscript.ts +0 -867
- package/src/plus/agents/providers/gkAgentProvider.ts +0 -4036
- package/src/plus/agents/sanitizePrompt.ts +0 -109
- package/src/plus/agents/stateMachine.ts +0 -197
- package/src/plus/agents/types.ts +0 -500
- package/src/plus/ai/constants.ts +0 -121
- package/src/plus/ai/errors.ts +0 -152
- package/src/plus/ai/models/conversation.ts +0 -35
- package/src/plus/ai/models/model.ts +0 -528
- package/src/plus/ai/models/promptTemplates.ts +0 -171
- package/src/plus/ai/models/provider.ts +0 -125
- package/src/plus/ai/models/results.ts +0 -31
- package/src/plus/ai/prompts.ts +0 -849
- package/src/plus/ai/providers/anthropicProvider.ts +0 -458
- package/src/plus/ai/providers/azureProvider.ts +0 -74
- package/src/plus/ai/providers/context.ts +0 -29
- package/src/plus/ai/providers/deepSeekProvider.ts +0 -46
- package/src/plus/ai/providers/geminiProvider.ts +0 -245
- package/src/plus/ai/providers/gitkrakenProvider.ts +0 -347
- package/src/plus/ai/providers/huggingFaceProvider.ts +0 -64
- package/src/plus/ai/providers/mistralProvider.ts +0 -243
- package/src/plus/ai/providers/ollamaProvider.ts +0 -292
- package/src/plus/ai/providers/openAICompatibleProvider.ts +0 -64
- package/src/plus/ai/providers/openAICompatibleProviderBase.ts +0 -654
- package/src/plus/ai/providers/openRouterProvider.ts +0 -101
- package/src/plus/ai/providers/openaiProvider.ts +0 -47
- package/src/plus/ai/providers/responseFormatCache.ts +0 -39
- package/src/plus/ai/providers/xaiProvider.ts +0 -54
- package/src/plus/ai/utils/ai.utils.ts +0 -95
- package/src/plus/ai/utils/results.utils.ts +0 -407
- package/src/plus/ai/utils/truncation.utils.ts +0 -296
- package/src/plus/git-github/api/config.ts +0 -91
- package/src/plus/git-github/api/github.ts +0 -5462
- package/src/plus/git-github/api/github.utils.ts +0 -36
- package/src/plus/git-github/api/issueSearchQuery.ts +0 -273
- package/src/plus/git-github/api/pullRequestSearchQuery.ts +0 -154
- package/src/plus/git-github/api/token.ts +0 -15
- package/src/plus/git-github/api/tokenUtils.ts +0 -15
- package/src/plus/git-github/api/types.ts +0 -197
- package/src/plus/git-github/context.ts +0 -107
- package/src/plus/git-github/models.ts +0 -623
- package/src/plus/git-github/providers/github/blame.ts +0 -225
- package/src/plus/git-github/providers/github/branches.ts +0 -401
- package/src/plus/git-github/providers/github/commits.ts +0 -929
- package/src/plus/git-github/providers/github/config.ts +0 -47
- package/src/plus/git-github/providers/github/contributors.ts +0 -313
- package/src/plus/git-github/providers/github/diff.ts +0 -281
- package/src/plus/git-github/providers/github/graph.ts +0 -635
- package/src/plus/git-github/providers/github/refs.ts +0 -172
- package/src/plus/git-github/providers/github/remotes.ts +0 -44
- package/src/plus/git-github/providers/github/revision.ts +0 -140
- package/src/plus/git-github/providers/github/status.ts +0 -69
- package/src/plus/git-github/providers/github/tags.ts +0 -148
- package/src/plus/git-github/providers/githubGitProvider.ts +0 -168
- package/src/plus/git-github/providers/githubProvider.ts +0 -65
- package/src/plus/integrations/authentication/cloudIntegrationService.ts +0 -292
- package/src/plus/integrations/authentication/configuredIntegrationService.ts +0 -656
- package/src/plus/integrations/authentication/integrationAuthenticationProvider.ts +0 -385
- package/src/plus/integrations/authentication/integrationAuthenticationService.ts +0 -148
- package/src/plus/integrations/authentication/manualTokenProvider.ts +0 -79
- package/src/plus/integrations/authentication/models.ts +0 -202
- package/src/plus/integrations/authentication/rejectedTokenTracker.ts +0 -56
- package/src/plus/integrations/collectionMetadata.ts +0 -325
- package/src/plus/integrations/constants.ts +0 -190
- package/src/plus/integrations/context.ts +0 -386
- package/src/plus/integrations/errors.ts +0 -188
- package/src/plus/integrations/index.ts +0 -231
- package/src/plus/integrations/integrationService.ts +0 -2003
- package/src/plus/integrations/lite.ts +0 -233
- package/src/plus/integrations/manager.ts +0 -728
- package/src/plus/integrations/models/gitHostIntegration.ts +0 -1862
- package/src/plus/integrations/models/integration.ts +0 -1005
- package/src/plus/integrations/models/issueCache.ts +0 -29
- package/src/plus/integrations/models/issueReads.ts +0 -152
- package/src/plus/integrations/models/issuesIntegration.ts +0 -248
- package/src/plus/integrations/models/pullRequestReads.ts +0 -18
- package/src/plus/integrations/providerFilters.ts +0 -36
- package/src/plus/integrations/providers/accounts.ts +0 -38
- package/src/plus/integrations/providers/apiClients.ts +0 -69
- package/src/plus/integrations/providers/apiConfig.ts +0 -71
- package/src/plus/integrations/providers/azure/azure.ts +0 -822
- package/src/plus/integrations/providers/azure/models.ts +0 -621
- package/src/plus/integrations/providers/azureDevOps.ts +0 -1346
- package/src/plus/integrations/providers/bitbucket/bitbucket.ts +0 -904
- package/src/plus/integrations/providers/bitbucket/models.ts +0 -446
- package/src/plus/integrations/providers/bitbucket-server/models.ts +0 -283
- package/src/plus/integrations/providers/bitbucket-server.ts +0 -445
- package/src/plus/integrations/providers/bitbucket.ts +0 -793
- package/src/plus/integrations/providers/github/github.ts +0 -64
- package/src/plus/integrations/providers/github/github.utils.ts +0 -23
- package/src/plus/integrations/providers/github/models.ts +0 -29
- package/src/plus/integrations/providers/github.ts +0 -940
- package/src/plus/integrations/providers/gitlab/gitlab.ts +0 -1320
- package/src/plus/integrations/providers/gitlab/gitlab.utils.ts +0 -80
- package/src/plus/integrations/providers/gitlab/models.ts +0 -271
- package/src/plus/integrations/providers/gitlab.ts +0 -841
- package/src/plus/integrations/providers/issueSorts.ts +0 -89
- package/src/plus/integrations/providers/jira.ts +0 -596
- package/src/plus/integrations/providers/jiraIssueByKey.ts +0 -155
- package/src/plus/integrations/providers/linear.ts +0 -484
- package/src/plus/integrations/providers/models.ts +0 -1816
- package/src/plus/integrations/providers/providerErrors.ts +0 -115
- package/src/plus/integrations/providers/providersApi.ts +0 -1881
- package/src/plus/integrations/providers/pullRequestReviews.ts +0 -122
- package/src/plus/integrations/providers/trello.ts +0 -208
- package/src/plus/integrations/providers/utils/providerPaging.ts +0 -212
- package/src/plus/integrations/providers/utils.ts +0 -419
- package/src/plus/integrations/reads/broaden.ts +0 -704
- package/src/plus/integrations/reads/context.ts +0 -99
- package/src/plus/integrations/reads/counts.ts +0 -610
- package/src/plus/integrations/reads/cursors.ts +0 -224
- package/src/plus/integrations/reads/drains.ts +0 -420
- package/src/plus/integrations/reads/filters.ts +0 -614
- package/src/plus/integrations/reads/hierarchy.ts +0 -486
- package/src/plus/integrations/reads/hierarchy.utils.ts +0 -155
- package/src/plus/integrations/reads/issueBatch.ts +0 -197
- package/src/plus/integrations/reads/issueTracker.ts +0 -556
- package/src/plus/integrations/reads/issues.ts +0 -600
- package/src/plus/integrations/reads/ordering.ts +0 -124
- package/src/plus/integrations/reads/paging.ts +0 -379
- package/src/plus/integrations/reads/pullRequests.ts +0 -260
- package/src/plus/integrations/reads/resolveRepository.ts +0 -272
- package/src/plus/integrations/reads/searchIssues.ts +0 -274
- package/src/plus/integrations/reads/searchPullRequests.ts +0 -235
- package/src/plus/integrations/reads/sweeps.ts +0 -266
- package/src/plus/integrations/reads/trackerIssue.ts +0 -105
- package/src/plus/integrations/reads/warnings.ts +0 -535
- package/src/plus/integrations/results.ts +0 -443
- package/src/plus/integrations/telemetry.ts +0 -29
- package/src/plus/integrations/utils/domain.utils.ts +0 -26
- package/src/plus/integrations/utils/integration.utils.ts +0 -215
- package/src/utils/array.ts +0 -194
- package/src/utils/base64.ts +0 -1
- package/src/utils/brand.ts +0 -7
- package/src/utils/cancellation.ts +0 -199
- package/src/utils/charCode.ts +0 -38
- package/src/utils/coalescedRun.ts +0 -45
- package/src/utils/color.ts +0 -817
- package/src/utils/counter.ts +0 -21
- package/src/utils/crypto.ts +0 -1
- package/src/utils/date.ts +0 -474
- package/src/utils/debounce.ts +0 -303
- package/src/utils/decorators/debounce.ts +0 -31
- package/src/utils/decorators/gate.ts +0 -167
- package/src/utils/decorators/log.ts +0 -320
- package/src/utils/decorators/memoize.ts +0 -98
- package/src/utils/decorators/resolver.ts +0 -95
- package/src/utils/decorators/sequentialize.ts +0 -118
- package/src/utils/decorators/serializable.ts +0 -43
- package/src/utils/dedupedAsyncCache.ts +0 -74
- package/src/utils/diff.ts +0 -61
- package/src/utils/disposable.ts +0 -156
- package/src/utils/encoding.ts +0 -8
- package/src/utils/env/browser/base64.ts +0 -50
- package/src/utils/env/browser/crypto.ts +0 -21
- package/src/utils/env/browser/fs.ts +0 -3
- package/src/utils/env/browser/hex.ts +0 -41
- package/src/utils/env/browser/hrtime.ts +0 -14
- package/src/utils/env/browser/logScope.ts +0 -57
- package/src/utils/env/browser/md5.ts +0 -217
- package/src/utils/env/browser/platform.ts +0 -10
- package/src/utils/env/node/base64.ts +0 -19
- package/src/utils/env/node/crypto.ts +0 -17
- package/src/utils/env/node/exec.ts +0 -488
- package/src/utils/env/node/fs.ts +0 -5
- package/src/utils/env/node/hex.ts +0 -11
- package/src/utils/env/node/hrtime.ts +0 -1
- package/src/utils/env/node/logScope.ts +0 -63
- package/src/utils/env/node/platform.ts +0 -5
- package/src/utils/error.ts +0 -18
- package/src/utils/event.ts +0 -230
- package/src/utils/formatter.ts +0 -198
- package/src/utils/fs.ts +0 -1
- package/src/utils/function.ts +0 -141
- package/src/utils/fuzzy.ts +0 -185
- package/src/utils/hash.ts +0 -60
- package/src/utils/hex.ts +0 -1
- package/src/utils/hrtime.ts +0 -8
- package/src/utils/iterable.ts +0 -797
- package/src/utils/keys/chord.ts +0 -184
- package/src/utils/keys/keybinding.ts +0 -116
- package/src/utils/lazy.ts +0 -39
- package/src/utils/loggable.ts +0 -7
- package/src/utils/logger.scoped.ts +0 -237
- package/src/utils/logger.ts +0 -403
- package/src/utils/lruMap.ts +0 -112
- package/src/utils/markdown.ts +0 -115
- package/src/utils/mru.ts +0 -68
- package/src/utils/object.ts +0 -278
- package/src/utils/paging.ts +0 -97
- package/src/utils/path.ts +0 -204
- package/src/utils/platform.ts +0 -1
- package/src/utils/promise.ts +0 -657
- package/src/utils/promiseCache.ts +0 -908
- package/src/utils/resourceUsage.ts +0 -5
- package/src/utils/searchTree.ts +0 -444
- package/src/utils/stopwatch.ts +0 -125
- package/src/utils/string.ts +0 -1003
- package/src/utils/subscriptionManager.ts +0 -40
- package/src/utils/trie.ts +0 -740
- package/src/utils/types.ts +0 -31
- package/src/utils/uri.ts +0 -118
- package/src/utils/validation.ts +0 -38
- package/src/utils/version.ts +0 -128
|
@@ -1,21 +1,22 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
1
|
+
import { Event } from "../../utils/event.js";
|
|
2
|
+
import { IssueSearchCriteria, IssueShape, IssueSorting } from "../../git/models/issue.js";
|
|
3
|
+
import { PullRequestFilter, PullRequestSearchCriteria, PullRequestShape, PullRequestStateFilter } from "../../git/models/pullRequest.js";
|
|
4
|
+
import { ConfiguredIntegrationDescriptor } from "./authentication/models.js";
|
|
5
|
+
import { IntegrationIds } from "./constants.js";
|
|
6
|
+
import { ConfiguredIntegrationsChangeEvent } from "./authentication/configuredIntegrationService.js";
|
|
7
|
+
import { IssueFilter } from "./providerFilters.js";
|
|
8
|
+
import { ConnectionStateChangeEvent, ProviderBroadenResult, ProviderOrganization, ProviderPagedResult, ProviderRepositoryShape, ProviderResult, ProviderSweepResult, ResolveRepositoryResult } from "./results.js";
|
|
9
|
+
import { IssueCountResult, IssueCountScope, PullRequestCountResult, PullRequestCountScope } from "./reads/counts.js";
|
|
10
|
+
import { SupportedFilters } from "./reads/filters.js";
|
|
11
|
+
import { IssueBatchResult, IssueBatchTarget } from "./reads/issueBatch.js";
|
|
12
|
+
import { TrackerIssueResult } from "./reads/trackerIssue.js";
|
|
13
|
+
//#region ../plus/integrations/src/manager.d.ts
|
|
13
14
|
/** Neutral repository input accepted by repo-scoped provider reads. */
|
|
14
15
|
export interface ProviderRepositoryInput {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
namespace: string;
|
|
17
|
+
name: string;
|
|
18
|
+
project?: string;
|
|
19
|
+
id?: string;
|
|
19
20
|
}
|
|
20
21
|
export type ProviderRepositoriesInput = (string | number)[] | ProviderRepositoryInput[];
|
|
21
22
|
/**
|
|
@@ -27,18 +28,18 @@ export type ProviderRepositoriesInput = (string | number)[] | ProviderRepository
|
|
|
27
28
|
* the trusted authentication configuration, not repository or remote data.
|
|
28
29
|
*/
|
|
29
30
|
export interface ProviderSweepTarget {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
31
|
+
providerId: IntegrationIds;
|
|
32
|
+
connectionId?: string;
|
|
33
|
+
domain?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Relationship filters for this provider slice. With sweep-level `repos`, members are provider query
|
|
36
|
+
* constraints; without `repos`, they form an exact OR union. The whole set is validated against the
|
|
37
|
+
* selected path's capabilities.
|
|
38
|
+
*
|
|
39
|
+
* This per-target form lets a cross-provider sweep preserve provider-specific semantics without leaking
|
|
40
|
+
* provider query details into the consumer. It overrides the sweep-level `filters` for this target.
|
|
41
|
+
*/
|
|
42
|
+
filters?: PullRequestFilter[];
|
|
42
43
|
}
|
|
43
44
|
/**
|
|
44
45
|
* One target's contribution to a pull-request sweep, reported as it settles.
|
|
@@ -58,56 +59,56 @@ export interface ProviderSweepTarget {
|
|
|
58
59
|
* from `outcome`: they are the target's own values, not constants the outcome guarantees.
|
|
59
60
|
*/
|
|
60
61
|
export interface ProviderSweepTargetEvent {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
62
|
+
providerId: IntegrationIds;
|
|
63
|
+
/**
|
|
64
|
+
* The self-managed host this target selects, resolved from its configured connection, its explicit domain,
|
|
65
|
+
* or the provider's primary configured host — the same rule the read itself uses, and the same one whether
|
|
66
|
+
* the target drained fully or was rejected by the first guard.
|
|
67
|
+
*
|
|
68
|
+
* Always `undefined` for a cloud provider: it has a single host, so there is nothing to disambiguate. Group
|
|
69
|
+
* by `providerId` and treat this as a label, not part of the key.
|
|
70
|
+
*/
|
|
71
|
+
domain: string | undefined;
|
|
72
|
+
connectionId: string | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* Rows this target contributed to the aggregate result. The sweep concatenates target slices without a
|
|
75
|
+
* cross-target pass — duplicates are collapsed per target, across its own pages — so these sum to exactly
|
|
76
|
+
* `items.length`, and a sum that disagrees means a target went unreported.
|
|
77
|
+
*/
|
|
78
|
+
count: number;
|
|
79
|
+
/**
|
|
80
|
+
* Wall time from this target's worker picking it up to its slice being ready.
|
|
81
|
+
*
|
|
82
|
+
* Targets in the same sweep run concurrently, so these intervals OVERLAP and are not additive: summing them
|
|
83
|
+
* across a sweep exceeds the sweep's own duration. Compare them against each other, not against a total.
|
|
84
|
+
*/
|
|
85
|
+
durationMs: number;
|
|
86
|
+
/**
|
|
87
|
+
* Wall time between the fan-out starting and this target's worker picking the target up.
|
|
88
|
+
*
|
|
89
|
+
* Structurally 0 only while the target count fits the fan-out's concurrency limit, which a selection of a
|
|
90
|
+
* few providers does and the default sweep does NOT: with no `targets`/`providerIds` it opens one target per
|
|
91
|
+
* supported git host, more than the limit, so the last ones genuinely wait. A non-zero value there is the
|
|
92
|
+
* normal case, not an anomaly — it is the cost of the bound, and only worth acting on if it rivals
|
|
93
|
+
* `durationMs`.
|
|
94
|
+
*/
|
|
95
|
+
queueWaitMs: number;
|
|
96
|
+
outcome: 'ok' | 'failed-provider' | 'fetch-failed' | 'skipped';
|
|
97
|
+
/** Whether this target left pages unread. */
|
|
98
|
+
truncated: boolean;
|
|
98
99
|
}
|
|
99
100
|
type ProviderSweepSelection = {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
101
|
+
targets: readonly ProviderSweepTarget[];
|
|
102
|
+
providerIds?: never;
|
|
103
|
+
connectionId?: never;
|
|
103
104
|
} | {
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
105
|
+
targets?: never;
|
|
106
|
+
providerIds?: IntegrationIds[];
|
|
107
|
+
/**
|
|
108
|
+
* Legacy single-provider selector. It is ignored when `providerIds` contains more than one provider;
|
|
109
|
+
* use `targets` to select connections independently in a multi-provider sweep.
|
|
110
|
+
*/
|
|
111
|
+
connectionId?: string;
|
|
111
112
|
};
|
|
112
113
|
/**
|
|
113
114
|
* One org slice in an issue-broadening fan-out. `domain` is a fallback for self-managed hosts whose
|
|
@@ -116,63 +117,63 @@ type ProviderSweepSelection = {
|
|
|
116
117
|
* repository or remote data.
|
|
117
118
|
*/
|
|
118
119
|
export interface ProviderBroadenOrg {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
120
|
+
providerId: IntegrationIds;
|
|
121
|
+
name: string;
|
|
122
|
+
connectionId?: string;
|
|
123
|
+
domain?: string;
|
|
123
124
|
}
|
|
124
125
|
type PullRequestSweepCommonOptions = {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
126
|
+
repos?: ProviderRepositoriesInput;
|
|
127
|
+
/** Named `states` to match {@link IntegrationManager.listPullRequestsPage}; a mismatch here read as silently ignored. */
|
|
128
|
+
states?: PullRequestStateFilter[];
|
|
129
|
+
/**
|
|
130
|
+
* Relationship filters applied to every target. Repo-scoped reads combine them as provider query
|
|
131
|
+
* constraints (normally an intersection); account-wide reads form an exact OR union. The set is validated
|
|
132
|
+
* against `pullRequests` or `pullRequestsAccountWide`, respectively. A target's own `filters` overrides this.
|
|
133
|
+
*/
|
|
134
|
+
filters?: PullRequestFilter[];
|
|
135
|
+
/**
|
|
136
|
+
* Account-wide only: include review-requested PRs when the provider's native "my PRs" query omits them.
|
|
137
|
+
* This extends the provider-native result; it is not a narrowing filter.
|
|
138
|
+
*/
|
|
139
|
+
includeReviewRequested?: boolean;
|
|
140
|
+
/**
|
|
141
|
+
* Account-wide only: fetch the full PR projection (review decision, review requests, latest reviews)
|
|
142
|
+
* instead of the default summary/lite one. Opt-in because it enlarges every account-wide page; callers
|
|
143
|
+
* that classify by review state (e.g. a "needs my review" surface) set it, others keep the lean read.
|
|
144
|
+
*
|
|
145
|
+
* GitHub/GHE only today — no other provider's account-wide read has a projection switch, so they return
|
|
146
|
+
* their native shape regardless. A cross-provider sweep therefore gets reviews from GitHub targets and
|
|
147
|
+
* whatever the others natively carry; it is a breadth request, not a guarantee, so it does not refuse
|
|
148
|
+
* (unlike `filters`, where dropping a member would change the requested set).
|
|
149
|
+
*
|
|
150
|
+
* Projection only: it cannot change which pull requests come back. Every GitHub account-wide read goes through
|
|
151
|
+
* the same search whether or not it is set, so the Launchpad ignored-repository and organization qualifiers
|
|
152
|
+
* (and the per-facet result ceiling) apply the same either way. What it costs is the reduced page size, and a
|
|
153
|
+
* document whose weight scales with the number of relationship × state facets in flight.
|
|
154
|
+
*/
|
|
155
|
+
includeReviews?: boolean;
|
|
156
|
+
forceSync?: boolean;
|
|
157
|
+
maxPages?: number;
|
|
158
|
+
/**
|
|
159
|
+
* Fired once per target as it settles, for host-side per-provider attribution.
|
|
160
|
+
*
|
|
161
|
+
* Observation only: it cannot influence the sweep, and a SYNCHRONOUS throw is swallowed rather than allowed
|
|
162
|
+
* to turn a successful target into a failed one. Return nothing and do no async work: the `void` return type
|
|
163
|
+
* admits an `async` callback, but nothing awaits it, so a rejection from one escapes that guarantee as an
|
|
164
|
+
* unhandled rejection. It is also invoked synchronously in the middle of the fan-out — do not re-enter the
|
|
165
|
+
* manager from it.
|
|
166
|
+
*
|
|
167
|
+
* Omitting it costs nothing at all, not even a clock read, so a host that only measures behind a gate can
|
|
168
|
+
* leave the gate off without paying for the option.
|
|
169
|
+
*
|
|
170
|
+
* It reports how a target SETTLED, not every way one can end, and **delivery does not stop when the sweep
|
|
171
|
+
* fails**: if a target's read throws instead of reporting failure through its slice, the sweep rejects with
|
|
172
|
+
* that error, but its sibling targets are already in flight and are not cancelled, so their events still
|
|
173
|
+
* arrive — after the returned promise has rejected. Key the accumulator to the call rather than closing it
|
|
174
|
+
* on rejection, or a late event lands in whatever bucket is current by then.
|
|
175
|
+
*/
|
|
176
|
+
onTargetSettled?: (event: ProviderSweepTargetEvent) => void;
|
|
176
177
|
};
|
|
177
178
|
export type PullRequestSweepOptions = PullRequestSweepCommonOptions & ProviderSweepSelection;
|
|
178
179
|
export type ClosedPullRequestSweepOptions = Omit<PullRequestSweepCommonOptions, 'states'> & ProviderSweepSelection;
|
|
@@ -181,28 +182,28 @@ export type ClosedPullRequestSweepOptions = Omit<PullRequestSweepCommonOptions,
|
|
|
181
182
|
* to one provider. A `connectionId`/`domain` without `providerId` is ambiguous and therefore unrepresentable.
|
|
182
183
|
*/
|
|
183
184
|
export type ListOrgsOptions = {
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
185
|
+
providerId: IntegrationIds;
|
|
186
|
+
connectionId?: string;
|
|
187
|
+
domain?: string;
|
|
187
188
|
} | {
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
189
|
+
providerId?: never;
|
|
190
|
+
connectionId?: never;
|
|
191
|
+
domain?: never;
|
|
191
192
|
};
|
|
192
193
|
/**
|
|
193
194
|
* Project discovery follows the same provider-targeting rule as {@link ListOrgsOptions}; `org` may still
|
|
194
195
|
* narrow either a single-provider read or the unscoped fan-out.
|
|
195
196
|
*/
|
|
196
197
|
export type ListProjectsOptions = {
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
198
|
+
providerId: IntegrationIds;
|
|
199
|
+
org?: string;
|
|
200
|
+
connectionId?: string;
|
|
201
|
+
domain?: string;
|
|
201
202
|
} | {
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
203
|
+
providerId?: never;
|
|
204
|
+
org?: string;
|
|
205
|
+
connectionId?: never;
|
|
206
|
+
domain?: never;
|
|
206
207
|
};
|
|
207
208
|
/**
|
|
208
209
|
* Public, provider-neutral integration facade. Provider clients and integration model instances remain private
|
|
@@ -230,462 +231,473 @@ export type ListProjectsOptions = {
|
|
|
230
231
|
* `page.truncated`), never as a page that can't be requested.
|
|
231
232
|
*/
|
|
232
233
|
export interface IntegrationManager {
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
234
|
+
readonly onDidChange: Event<ConfiguredIntegrationsChangeEvent>;
|
|
235
|
+
readonly onDidChangeConnectionState: Event<ConnectionStateChangeEvent>;
|
|
236
|
+
dispose(): void;
|
|
237
|
+
getConfigured(id?: IntegrationIds, options?: {
|
|
238
|
+
cloud?: boolean;
|
|
239
|
+
domain?: string;
|
|
240
|
+
}): ConfiguredIntegrationDescriptor[];
|
|
241
|
+
/**
|
|
242
|
+
* The `filters` a provider accepts on `listPullRequestsPage`/`listIssuesPage` and the sweeps.
|
|
243
|
+
*
|
|
244
|
+
* The filter contract is all-or-nothing: a set containing even one unsupported filter is refused (empty
|
|
245
|
+
* `items` + a warning + `fetchFailed`) rather than narrowed, because falling through to an unfiltered read
|
|
246
|
+
* would return every pull request instead of the user's. Intersect against this before the read so a
|
|
247
|
+
* cross-provider filter set never turns into a failed page. Static per provider — no connection required.
|
|
248
|
+
*
|
|
249
|
+
* Empty means no filter of that kind is expressible (issue trackers have no pull requests; Bitbucket exposes
|
|
250
|
+
* no issues), which means "pass no filters", not "error".
|
|
251
|
+
*
|
|
252
|
+
* `pullRequests` covers repo-scoped PR reads; `pullRequestsAccountWide` covers account-wide PR reads.
|
|
253
|
+
* `issues` covers the repo-scoped issue read; `issuesAccountWide` covers the account-wide one (no `repos`).
|
|
254
|
+
* They differ because they are different provider queries — GitLab can express `Assignee` and `Author`
|
|
255
|
+
* account-wide, but not `Mention` — and `listIssuesPage` validates against whichever the read uses.
|
|
256
|
+
*
|
|
257
|
+
* An ISSUE TRACKER (Jira/Linear/Trello) reports its filters under `issues`, and
|
|
258
|
+
* {@link IntegrationManager.listIssueTrackerIssuesPage} validates against that field. Its
|
|
259
|
+
* `issuesAccountWide` is empty — those two fields split the git-host reads, and a tracker has neither of
|
|
260
|
+
* them (its issues live under resource → project) — so intersecting a tracker's filters against
|
|
261
|
+
* `issuesAccountWide` would read "cannot filter" for a provider that filters fine.
|
|
262
|
+
*
|
|
263
|
+
* This is a capability table, not a recommendation: a consumer matching another tool's behavior may pass fewer
|
|
264
|
+
* filters than are listed, or none where the underlying read is already scoped.
|
|
265
|
+
*/
|
|
266
|
+
getSupportedFilters(providerId: IntegrationIds): SupportedFilters;
|
|
267
|
+
/** Forces an authoritative cloud connection refresh. Rejects if the backend connection list cannot be read. */
|
|
268
|
+
refreshConnections(): Promise<void>;
|
|
269
|
+
/** Rejects unless `connectionId` is a configured cloud connection for `id`. */
|
|
270
|
+
setPrimaryConnection(id: IntegrationIds, connectionId: string): Promise<void>;
|
|
271
|
+
/** Rejects unless `connectionId` is a configured cloud connection for `id`. */
|
|
272
|
+
deleteConnection(id: IntegrationIds, connectionId: string): Promise<void>;
|
|
273
|
+
listOrgs(options?: ListOrgsOptions): Promise<ProviderResult<ProviderOrganization>>;
|
|
274
|
+
listProjects(options?: ListProjectsOptions): Promise<ProviderResult<ProviderOrganization>>;
|
|
275
|
+
listRepos(options: {
|
|
276
|
+
providerId: IntegrationIds;
|
|
277
|
+
org?: string;
|
|
278
|
+
project?: string;
|
|
240
279
|
/**
|
|
241
|
-
*
|
|
242
|
-
*
|
|
243
|
-
* The filter contract is all-or-nothing: a set containing even one unsupported filter is refused (empty
|
|
244
|
-
* `items` + a warning + `fetchFailed`) rather than narrowed, because falling through to an unfiltered read
|
|
245
|
-
* would return every pull request instead of the user's. Intersect against this before the read so a
|
|
246
|
-
* cross-provider filter set never turns into a failed page. Static per provider — no connection required.
|
|
247
|
-
*
|
|
248
|
-
* Empty means no filter of that kind is expressible (issue trackers have no pull requests; Bitbucket exposes
|
|
249
|
-
* no issues), which means "pass no filters", not "error".
|
|
250
|
-
*
|
|
251
|
-
* `pullRequests` covers repo-scoped PR reads; `pullRequestsAccountWide` covers account-wide PR reads.
|
|
252
|
-
* `issues` covers the repo-scoped issue read; `issuesAccountWide` covers the account-wide one (no `repos`).
|
|
253
|
-
* They differ because they are different provider queries — GitLab can express `Assignee` and `Author`
|
|
254
|
-
* account-wide, but not `Mention` — and `listIssuesPage` validates against whichever the read uses.
|
|
255
|
-
*
|
|
256
|
-
* An ISSUE TRACKER (Jira/Linear/Trello) reports its filters under `issues`, and
|
|
257
|
-
* {@link IntegrationManager.listIssueTrackerIssuesPage} validates against that field. Its
|
|
258
|
-
* `issuesAccountWide` is empty — those two fields split the git-host reads, and a tracker has neither of
|
|
259
|
-
* them (its issues live under resource → project) — so intersecting a tracker's filters against
|
|
260
|
-
* `issuesAccountWide` would read "cannot filter" for a provider that filters fine.
|
|
261
|
-
*
|
|
262
|
-
* This is a capability table, not a recommendation: a consumer matching another tool's behavior may pass fewer
|
|
263
|
-
* filters than are listed, or none where the underlying read is already scoped.
|
|
280
|
+
* Requested 1-based page. Cursor-only providers are advanced internally when no `cursor` is supplied,
|
|
281
|
+
* so a direct page-N request can cost O(page) upstream calls.
|
|
264
282
|
*/
|
|
265
|
-
|
|
266
|
-
/**
|
|
267
|
-
|
|
268
|
-
/** Rejects unless `connectionId` is a configured cloud connection for `id`. */
|
|
269
|
-
setPrimaryConnection(id: IntegrationIds, connectionId: string): Promise<void>;
|
|
270
|
-
/** Rejects unless `connectionId` is a configured cloud connection for `id`. */
|
|
271
|
-
deleteConnection(id: IntegrationIds, connectionId: string): Promise<void>;
|
|
272
|
-
listOrgs(options?: ListOrgsOptions): Promise<ProviderResult<ProviderOrganization>>;
|
|
273
|
-
listProjects(options?: ListProjectsOptions): Promise<ProviderResult<ProviderOrganization>>;
|
|
274
|
-
listRepos(options: {
|
|
275
|
-
providerId: IntegrationIds;
|
|
276
|
-
org?: string;
|
|
277
|
-
project?: string;
|
|
278
|
-
/**
|
|
279
|
-
* Requested 1-based page. Cursor-only providers are advanced internally when no `cursor` is supplied,
|
|
280
|
-
* so a direct page-N request can cost O(page) upstream calls.
|
|
281
|
-
*/
|
|
282
|
-
page?: number;
|
|
283
|
-
/** Continuation from a prior page's `cursor`; supplying it costs exactly one upstream request per scope. */
|
|
284
|
-
cursor?: string;
|
|
285
|
-
/**
|
|
286
|
-
* Requested page size. Advisory: the repos read core is cursor-only and takes no page size, so the
|
|
287
|
-
* provider's own size is what applies — `page.itemsPerPage` reports what was actually returned.
|
|
288
|
-
*/
|
|
289
|
-
itemsPerPage?: number;
|
|
290
|
-
connectionId?: string;
|
|
291
|
-
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
292
|
-
domain?: string;
|
|
293
|
-
}): Promise<ProviderPagedResult<ProviderRepositoryShape>>;
|
|
294
|
-
listPullRequestsPage(options: {
|
|
295
|
-
providerId: IntegrationIds;
|
|
296
|
-
repos?: ProviderRepositoriesInput;
|
|
297
|
-
states?: PullRequestStateFilter[];
|
|
298
|
-
/**
|
|
299
|
-
* Relationship filters. Repo-scoped reads combine members as provider query constraints (normally an
|
|
300
|
-
* intersection), so issue separate reads when the desired result is a union. Account-wide members form an
|
|
301
|
-
* exact OR union. Each path validates the whole set against its corresponding capability.
|
|
302
|
-
*/
|
|
303
|
-
filters?: PullRequestFilter[];
|
|
304
|
-
/**
|
|
305
|
-
* Account-wide only: include review-requested PRs when the provider's native "my PRs" query omits them.
|
|
306
|
-
* This extends the provider-native result; it is not a narrowing filter.
|
|
307
|
-
*/
|
|
308
|
-
includeReviewRequested?: boolean;
|
|
309
|
-
/**
|
|
310
|
-
* Requested 1-based page. Without a `cursor` this may cost O(page) upstream requests on a cursor-only
|
|
311
|
-
* read (repo-scoped GitHub/GHE and account-wide providers that return continuations), which the facade
|
|
312
|
-
* drains internally.
|
|
313
|
-
*/
|
|
314
|
-
page?: number;
|
|
315
|
-
/** Continuation from a prior page's `cursor`; supplying it costs exactly one upstream request per scope. */
|
|
316
|
-
cursor?: string;
|
|
317
|
-
/**
|
|
318
|
-
* Requested page size, honored on the repo-scoped path. The provider-defined account-wide read (no
|
|
319
|
-
* `repos`) takes no page size, so it is ignored there — `page.itemsPerPage` reports what was actually
|
|
320
|
-
* returned rather than echoing the request.
|
|
321
|
-
*/
|
|
322
|
-
itemsPerPage?: number;
|
|
323
|
-
forceSync?: boolean;
|
|
324
|
-
connectionId?: string;
|
|
325
|
-
/**
|
|
326
|
-
* Explicit self-managed host domain. Used only when the requested connection has no configured domain;
|
|
327
|
-
* it must come from the trusted authentication configuration, not repository or remote data.
|
|
328
|
-
*/
|
|
329
|
-
domain?: string;
|
|
330
|
-
/**
|
|
331
|
-
* Requests the lightweight row shape: everything except the per-row build-status rollup
|
|
332
|
-
* (`statusCheckRollupState`) and `commitCount`, which share one provider selection and are therefore
|
|
333
|
-
* dropped together. Set it on list/aggregate surfaces that read neither.
|
|
334
|
-
*
|
|
335
|
-
* The account-wide branch already requests this shape. A provider without a lightweight projection
|
|
336
|
-
* ignores the option, so it is a hint rather than a guarantee about which fields are present.
|
|
337
|
-
*/
|
|
338
|
-
summary?: boolean;
|
|
339
|
-
}): Promise<ProviderPagedResult<PullRequestShape>>;
|
|
283
|
+
page?: number;
|
|
284
|
+
/** Continuation from a prior page's `cursor`; supplying it costs exactly one upstream request per scope. */
|
|
285
|
+
cursor?: string;
|
|
340
286
|
/**
|
|
341
|
-
*
|
|
342
|
-
*
|
|
343
|
-
*
|
|
344
|
-
* This is a separate read from {@link listPullRequestsPage}: free text reaches the provider instead of filtering
|
|
345
|
-
* whichever rows happened to be loaded, and every cursor-threaded page costs exactly one upstream request.
|
|
346
|
-
* `criteria.relationships` and `criteria.states` are OR sets, so `[closed, merged]` expresses the complete
|
|
347
|
-
* terminal set and `[Author, Assignee, ReviewRequested]` matches the visible PR list without falling back to
|
|
348
|
-
* GitHub's mismatched `involves:@me`. Omit relationships only with a repository/organization scope to search
|
|
349
|
-
* every PR there.
|
|
350
|
-
*
|
|
351
|
-
* **Ordering is `criteria.sort`**, most-recently-updated-first when omitted. It is validated like every other
|
|
352
|
-
* criterion — a key not in `getSupportedFilters().pullRequestSearch.sorts` refuses the whole read rather than
|
|
353
|
-
* falling back, because at a bounded result window another order reaches another subset. The page is a union of
|
|
354
|
-
* the provider's relationship × state facets, so it is re-ordered as a whole rather than served as concatenated
|
|
355
|
-
* per-facet runs. Changing the sort invalidates a threaded cursor (it is part of the cursor's fingerprint,
|
|
356
|
-
* alongside the text and the scope); drop the cursor when you change the order.
|
|
357
|
-
*
|
|
358
|
-
* If the provider's result ceiling is reached, the request still succeeds and carries a warning omission with
|
|
359
|
-
* `totalCount`, `limit`, `sort`, and `recovery: 'none'`. `totalCount` is the largest provider-reported
|
|
360
|
-
* pre-ceiling facet count, not the reachable or returned row count; this mirrors the per-search ceiling's own
|
|
361
|
-
* unit.
|
|
362
|
-
*
|
|
363
|
-
* Check `getSupportedFilters().pullRequestSearch` before calling. A provider that reports no relationships
|
|
364
|
-
* refuses the read rather than returning a page that never honored the criteria or scope.
|
|
287
|
+
* Requested page size. Advisory: the repos read core is cursor-only and takes no page size, so the
|
|
288
|
+
* provider's own size is what applies — `page.itemsPerPage` reports what was actually returned.
|
|
365
289
|
*/
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
/**
|
|
376
|
-
* Organization/account that bounds the search.
|
|
377
|
-
*
|
|
378
|
-
* Held to a STRICTER rule than the free-form `criteria.text`, which is sanitized: a scope name carrying a
|
|
379
|
-
* quote, or an inner space or control character, is REFUSED (warning + `fetchFailed`), and the refusal
|
|
380
|
-
* names the value. Leading and trailing whitespace and control characters are stripped and accepted,
|
|
381
|
-
* since removing them cannot change which scope the query names. Sanitizing a scope would answer the wrong question — the sanitized value may name a real but
|
|
382
|
-
* DIFFERENT organization, whose result looks entirely normal. Pass the name exactly as the provider spells
|
|
383
|
-
* it; `''` means "no org supplied" and falls through to the other scopes.
|
|
384
|
-
*/
|
|
385
|
-
org?: string;
|
|
386
|
-
criteria?: PullRequestSearchCriteria;
|
|
387
|
-
/** Cursor-only: without a cursor, reaching page N costs O(N) upstream requests. */
|
|
388
|
-
page?: number;
|
|
389
|
-
cursor?: string;
|
|
390
|
-
/**
|
|
391
|
-
* Page size PER RELATIONSHIP × STATE facet, not per page. Each facet is its own aliased provider query —
|
|
392
|
-
* one axis more than {@link searchIssuesPage}'s per-relationship fan-out — so a page of a 3-relationship,
|
|
393
|
-
* 2-state search returns up to `6 × itemsPerPage` items before deduplication, and fewer than that where
|
|
394
|
-
* the facets overlap. Deduplication does NOT bring the page back to this size: it removes only the rows the
|
|
395
|
-
* facets share. `page.itemsPerPage` reports what actually came back, so size the UI off that rather than
|
|
396
|
-
* off this. A provider may also cap it below what is asked for.
|
|
397
|
-
*/
|
|
398
|
-
itemsPerPage?: number;
|
|
399
|
-
forceSync?: boolean;
|
|
400
|
-
connectionId?: string;
|
|
401
|
-
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
402
|
-
domain?: string;
|
|
403
|
-
/**
|
|
404
|
-
* Requests the lightweight row shape: identity, body, author, repository, branch refs and stack info,
|
|
405
|
-
* without review, check or diff statistics. It also replaces the flat per-facet default page size with a
|
|
406
|
-
* fixed budget shared across the search's ACTIVE facets, so with up to three of them it raises the page
|
|
407
|
-
* and from four on it LOWERS it — measured against GitHub, a 100-row budget versus a flat 30 each.
|
|
408
|
-
*
|
|
409
|
-
* A provider without a lightweight projection ignores it and returns its usual shape, so this is a hint
|
|
410
|
-
* rather than a contract about which fields are present.
|
|
411
|
-
*/
|
|
412
|
-
summary?: boolean;
|
|
413
|
-
}): Promise<ProviderPagedResult<PullRequestShape>>;
|
|
414
|
-
listIssuesPage(options: {
|
|
415
|
-
providerId: IntegrationIds;
|
|
416
|
-
repos?: ProviderRepositoriesInput;
|
|
417
|
-
/**
|
|
418
|
-
* Narrows the account-wide read (no `repos`) to one org/account, and `project` to one project within it.
|
|
419
|
-
* Only a git host with a project tier (Azure DevOps) can scope this server-side; for any other provider
|
|
420
|
-
* either option is rejected with a warning + `fetchFailed` rather than silently returning an unscoped
|
|
421
|
-
* list. Ignored when `repos` is supplied, since those repos are already the scope.
|
|
422
|
-
*/
|
|
423
|
-
org?: string;
|
|
424
|
-
project?: string;
|
|
425
|
-
/**
|
|
426
|
-
* Narrows to the requested relationship(s), validated against `getSupportedFilters().issues` on the
|
|
427
|
-
* repo-scoped path and `.issuesAccountWide` on the account-wide one.
|
|
428
|
-
*
|
|
429
|
-
* On the account-wide path this REPLACES the provider's own definition of "my issues" — GitHub/GHE
|
|
430
|
-
* authored + assigned + mentioned, Azure assigned + authored, and GitLab assigned-to-me — so
|
|
431
|
-
* `[Assignee]` gets `assignee:@me` semantics wherever it's expressible. Narrowing must happen here rather
|
|
432
|
-
* than on the returned page: the excluded items still counted toward the provider's paging, so filtering
|
|
433
|
-
* afterward leaves `items` describing a different result set than `hasMore`/`cursor`.
|
|
434
|
-
*
|
|
435
|
-
* A set the provider can't express server-side is refused whole (warning + `fetchFailed`), never widened.
|
|
436
|
-
*/
|
|
437
|
-
filters?: IssueFilter[];
|
|
438
|
-
/** Broadens to every assignee. On account-wide reads it contradicts `filters`, so passing both is refused. */
|
|
439
|
-
includeAllAssignees?: boolean;
|
|
440
|
-
/**
|
|
441
|
-
* How to order the page, as `field:direction` (e.g. `updated:desc`, `created:asc`). Omitted orders
|
|
442
|
-
* most-recently-updated-first wherever the provider can express it — this facade's default, not the
|
|
443
|
-
* provider's, which differ from each other.
|
|
444
|
-
*
|
|
445
|
-
* Validated against `getSupportedFilters().issueSorts` when `repos` is supplied and
|
|
446
|
-
* `.issueSortsAccountWide` when it isn't, and refused (warning + `fetchFailed`) rather than downgraded: at
|
|
447
|
-
* the provider's reachable window another order is another subset, so a silently different one is
|
|
448
|
-
* indistinguishable from the one asked for. Keep it fixed across a pagination.
|
|
449
|
-
*
|
|
450
|
-
* With SEVERAL repositories/projects the page is a merge of one query each, so only a key a normalized
|
|
451
|
-
* issue carries can be honored — `priority`, `dueDate` and `resolved` are refused there even where the
|
|
452
|
-
* provider supports them on a single scope. The order applies within a page; across pages it is per scope.
|
|
453
|
-
*/
|
|
454
|
-
sort?: IssueSorting;
|
|
455
|
-
/**
|
|
456
|
-
* Requested 1-based page. Without a `cursor` this may cost O(page) upstream requests on cursor-backed
|
|
457
|
-
* reads such as repo-scoped GitHub/GHE; aggregate single-page account-wide reads remain O(1).
|
|
458
|
-
*/
|
|
459
|
-
page?: number;
|
|
460
|
-
/** Continuation from a prior page's `cursor`; supplying it costs exactly one upstream request per scope. */
|
|
461
|
-
cursor?: string;
|
|
462
|
-
itemsPerPage?: number;
|
|
463
|
-
forceSync?: boolean;
|
|
464
|
-
connectionId?: string;
|
|
465
|
-
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
466
|
-
domain?: string;
|
|
467
|
-
}): Promise<ProviderPagedResult<IssueShape>>;
|
|
290
|
+
itemsPerPage?: number;
|
|
291
|
+
connectionId?: string;
|
|
292
|
+
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
293
|
+
domain?: string;
|
|
294
|
+
}): Promise<ProviderPagedResult<ProviderRepositoryShape>>;
|
|
295
|
+
listPullRequestsPage(options: {
|
|
296
|
+
providerId: IntegrationIds;
|
|
297
|
+
repos?: ProviderRepositoriesInput;
|
|
298
|
+
states?: PullRequestStateFilter[];
|
|
468
299
|
/**
|
|
469
|
-
*
|
|
470
|
-
*
|
|
471
|
-
*
|
|
472
|
-
*
|
|
473
|
-
* Why this and not {@link listIssuesPage}: that read is either bound to the user's own relationships
|
|
474
|
-
* (account-wide) or routed through the SDK's repo-scoped read, whose over-limit recovery walk can spend up to
|
|
475
|
-
* 128 sequential requests and still return an incomplete set. This one is a single request per page.
|
|
476
|
-
*
|
|
477
|
-
* Three parts of the contract worth reading before calling:
|
|
478
|
-
*
|
|
479
|
-
* - **Scope is mandatory.** Pass `repos`, `org`, or a user relationship (`authored`/`assigned`/`mentioned`).
|
|
480
|
-
* `any-assignee`/`unassigned` do NOT scope anything — either alone matches every such issue on the host —
|
|
481
|
-
* so a call carrying only those is refused (warning + `fetchFailed`).
|
|
482
|
-
* - **Ordering is `criteria.sort`**, most-recently-updated-first when omitted. It is validated like every other
|
|
483
|
-
* criterion (against `getSupportedFilters().issueSearch.sorts`) and refused rather than downgraded, and SOME
|
|
484
|
-
* order is always requested — a "show the N most recent" policy at the provider's result ceiling is only
|
|
485
|
-
* correct under a guaranteed one. Keep it fixed for the life of a pagination: a cursor is bound to the order
|
|
486
|
-
* that produced it, and threading it under a different key is REFUSED (warning + `fetchFailed`) rather than
|
|
487
|
-
* resumed into a differently-ordered set. To change the order, drop the cursor and read from the first page.
|
|
488
|
-
* - **At the result ceiling the read SUCCEEDS.** It reports an omission carrying `totalCount` (how many
|
|
489
|
-
* matched), `limit` (how many are reachable) and `sort` (the order that window was selected under) with
|
|
490
|
-
* `recovery: 'none'`, so a consumer can say "19.240 matched, showing the 1.000 most recent" — naming the
|
|
491
|
-
* order, since which 1.000 are reachable depends on it — and know not to offer a "load more". It never falls
|
|
492
|
-
* back to a per-repository recovery walk.
|
|
493
|
-
*
|
|
494
|
-
* Check `getSupportedFilters().issueSearch` first: a provider with no filtered issue search reports empty
|
|
495
|
-
* relationships (and this read refuses), and a criterion or sort key it can't express refuses the whole read
|
|
496
|
-
* rather than serving a wider or differently-ordered result than asked for.
|
|
300
|
+
* Relationship filters. Repo-scoped reads combine members as provider query constraints (normally an
|
|
301
|
+
* intersection), so issue separate reads when the desired result is a union. Account-wide members form an
|
|
302
|
+
* exact OR union. Each path validates the whole set against its corresponding capability.
|
|
497
303
|
*/
|
|
498
|
-
|
|
499
|
-
providerId: IntegrationIds;
|
|
500
|
-
/**
|
|
501
|
-
* Repositories to search. Combines with `org`; both constrain the same query.
|
|
502
|
-
*
|
|
503
|
-
* Both halves of a descriptor must reach the provider unchanged — see `org` — since a search names a
|
|
504
|
-
* repository by its `namespace/name` path.
|
|
505
|
-
*/
|
|
506
|
-
repos?: ProviderRepositoriesInput;
|
|
507
|
-
/**
|
|
508
|
-
* Organization/account to search. Combines with `repos`.
|
|
509
|
-
*
|
|
510
|
-
* Held to a STRICTER rule than the free-form criteria, which are sanitized: a scope name carrying a quote,
|
|
511
|
-
* or an inner space or control character, is REFUSED (warning + `fetchFailed`), and the refusal names the
|
|
512
|
-
* value. Leading and trailing whitespace and control characters are stripped and accepted, since removing
|
|
513
|
-
* them cannot change which scope the query names.
|
|
514
|
-
* The sanitized value may name a real but DIFFERENT org, whose result looks entirely normal. `''` means
|
|
515
|
-
* "no org supplied" and falls through to the other scopes.
|
|
516
|
-
*/
|
|
517
|
-
org?: string;
|
|
518
|
-
criteria?: IssueSearchCriteria;
|
|
519
|
-
/**
|
|
520
|
-
* Requested 1-based page. This read is cursor-only, so without a `cursor` reaching page N costs O(N)
|
|
521
|
-
* upstream requests; pass the previous page's cursor to make it exactly one.
|
|
522
|
-
*/
|
|
523
|
-
page?: number;
|
|
524
|
-
cursor?: string;
|
|
525
|
-
/**
|
|
526
|
-
* Page size PER RELATIONSHIP, not per page. Each requested relationship is its own provider query, so a
|
|
527
|
-
* page of a 2-relationship search returns up to `2 × itemsPerPage` items before deduplication — and fewer
|
|
528
|
-
* than that when the two overlap. `page.itemsPerPage` reports what actually came back, so size the UI off
|
|
529
|
-
* that rather than off this. A provider may also cap it below what is asked for.
|
|
530
|
-
*/
|
|
531
|
-
itemsPerPage?: number;
|
|
532
|
-
forceSync?: boolean;
|
|
533
|
-
connectionId?: string;
|
|
534
|
-
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
535
|
-
domain?: string;
|
|
536
|
-
}): Promise<ProviderPagedResult<IssueShape>>;
|
|
304
|
+
filters?: PullRequestFilter[];
|
|
537
305
|
/**
|
|
538
|
-
*
|
|
539
|
-
*
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
*
|
|
544
|
-
*
|
|
545
|
-
*
|
|
546
|
-
|
|
547
|
-
|
|
306
|
+
* Account-wide only: include review-requested PRs when the provider's native "my PRs" query omits them.
|
|
307
|
+
* This extends the provider-native result; it is not a narrowing filter.
|
|
308
|
+
*/
|
|
309
|
+
includeReviewRequested?: boolean;
|
|
310
|
+
/**
|
|
311
|
+
* Requested 1-based page. Without a `cursor` this may cost O(page) upstream requests on a cursor-only
|
|
312
|
+
* read (repo-scoped GitHub/GHE and account-wide providers that return continuations), which the facade
|
|
313
|
+
* drains internally.
|
|
314
|
+
*/
|
|
315
|
+
page?: number;
|
|
316
|
+
/** Continuation from a prior page's `cursor`; supplying it costs exactly one upstream request per scope. */
|
|
317
|
+
cursor?: string;
|
|
318
|
+
/**
|
|
319
|
+
* Requested page size, honored on the repo-scoped path. The provider-defined account-wide read (no
|
|
320
|
+
* `repos`) takes no page size, so it is ignored there — `page.itemsPerPage` reports what was actually
|
|
321
|
+
* returned rather than echoing the request.
|
|
322
|
+
*/
|
|
323
|
+
itemsPerPage?: number;
|
|
324
|
+
forceSync?: boolean;
|
|
325
|
+
connectionId?: string;
|
|
326
|
+
/**
|
|
327
|
+
* Explicit self-managed host domain. Used only when the requested connection has no configured domain;
|
|
328
|
+
* it must come from the trusted authentication configuration, not repository or remote data.
|
|
329
|
+
*/
|
|
330
|
+
domain?: string;
|
|
331
|
+
/**
|
|
332
|
+
* Requests the lightweight row shape: everything except the per-row build-status rollup
|
|
333
|
+
* (`statusCheckRollupState`) and `commitCount`, which share one provider selection and are therefore
|
|
334
|
+
* dropped together. Set it on list/aggregate surfaces that read neither.
|
|
548
335
|
*
|
|
549
|
-
*
|
|
550
|
-
* the
|
|
551
|
-
|
|
336
|
+
* The account-wide branch already requests this shape. A provider without a lightweight projection
|
|
337
|
+
* ignores the option, so it is a hint rather than a guarantee about which fields are present.
|
|
338
|
+
*/
|
|
339
|
+
summary?: boolean;
|
|
340
|
+
}): Promise<ProviderPagedResult<PullRequestShape>>;
|
|
341
|
+
/**
|
|
342
|
+
* Pull requests matching structured criteria over a repository/organization or current-user relationship
|
|
343
|
+
* scope.
|
|
344
|
+
*
|
|
345
|
+
* This is a separate read from {@link listPullRequestsPage}: free text reaches the provider instead of filtering
|
|
346
|
+
* whichever rows happened to be loaded, and every cursor-threaded page costs exactly one upstream request.
|
|
347
|
+
* `criteria.relationships` and `criteria.states` are OR sets, so `[closed, merged]` expresses the complete
|
|
348
|
+
* terminal set and `[Author, Assignee, ReviewRequested]` matches the visible PR list without falling back to
|
|
349
|
+
* GitHub's mismatched `involves:@me`. Omit relationships only with a repository/organization scope to search
|
|
350
|
+
* every PR there.
|
|
351
|
+
*
|
|
352
|
+
* **Ordering is `criteria.sort`**, most-recently-updated-first when omitted. It is validated like every other
|
|
353
|
+
* criterion — a key not in `getSupportedFilters().pullRequestSearch.sorts` refuses the whole read rather than
|
|
354
|
+
* falling back, because at a bounded result window another order reaches another subset. The page is a union of
|
|
355
|
+
* the provider's relationship × state facets, so it is re-ordered as a whole rather than served as concatenated
|
|
356
|
+
* per-facet runs. Changing the sort invalidates a threaded cursor (it is part of the cursor's fingerprint,
|
|
357
|
+
* alongside the text and the scope); drop the cursor when you change the order.
|
|
358
|
+
*
|
|
359
|
+
* If the provider's result ceiling is reached, the request still succeeds and carries a warning omission with
|
|
360
|
+
* `totalCount`, `limit`, `sort`, and `recovery: 'none'`. `totalCount` is the largest provider-reported
|
|
361
|
+
* pre-ceiling facet count, not the reachable or returned row count; this mirrors the per-search ceiling's own
|
|
362
|
+
* unit.
|
|
363
|
+
*
|
|
364
|
+
* Check `getSupportedFilters().pullRequestSearch` before calling. A provider that reports no relationships
|
|
365
|
+
* refuses the read rather than returning a page that never honored the criteria or scope.
|
|
366
|
+
*/
|
|
367
|
+
searchPullRequestsPage(options: {
|
|
368
|
+
providerId: IntegrationIds;
|
|
369
|
+
/**
|
|
370
|
+
* Repository descriptors that bound the search; ids cannot name provider search qualifiers.
|
|
552
371
|
*
|
|
553
|
-
*
|
|
554
|
-
*
|
|
555
|
-
|
|
556
|
-
|
|
372
|
+
* Both halves of a descriptor must reach the provider unchanged — see `org` — since a search names a
|
|
373
|
+
* repository by its `namespace/name` path.
|
|
374
|
+
*/
|
|
375
|
+
repos?: ProviderRepositoriesInput;
|
|
376
|
+
/**
|
|
377
|
+
* Organization/account that bounds the search.
|
|
378
|
+
*
|
|
379
|
+
* Held to a STRICTER rule than the free-form `criteria.text`, which is sanitized: a scope name carrying a
|
|
380
|
+
* quote, or an inner space or control character, is REFUSED (warning + `fetchFailed`), and the refusal
|
|
381
|
+
* names the value. Leading and trailing whitespace and control characters are stripped and accepted,
|
|
382
|
+
* since removing them cannot change which scope the query names. Sanitizing a scope would answer the wrong question — the sanitized value may name a real but
|
|
383
|
+
* DIFFERENT organization, whose result looks entirely normal. Pass the name exactly as the provider spells
|
|
384
|
+
* it; `''` means "no org supplied" and falls through to the other scopes.
|
|
557
385
|
*/
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
564
|
-
domain?: string;
|
|
565
|
-
}): Promise<ProviderResult<IssueCountResult>>;
|
|
386
|
+
org?: string;
|
|
387
|
+
criteria?: PullRequestSearchCriteria;
|
|
388
|
+
/** Cursor-only: without a cursor, reaching page N costs O(N) upstream requests. */
|
|
389
|
+
page?: number;
|
|
390
|
+
cursor?: string;
|
|
566
391
|
/**
|
|
567
|
-
*
|
|
392
|
+
* Page size PER RELATIONSHIP × STATE facet, not per page. Each facet is its own aliased provider query —
|
|
393
|
+
* one axis more than {@link searchIssuesPage}'s per-relationship fan-out — so a page of a 3-relationship,
|
|
394
|
+
* 2-state search returns up to `6 × itemsPerPage` items before deduplication, and fewer than that where
|
|
395
|
+
* the facets overlap. Deduplication does NOT bring the page back to this size: it removes only the rows the
|
|
396
|
+
* facets share. `page.itemsPerPage` reports what actually came back, so size the UI off that rather than
|
|
397
|
+
* off this. A provider may also cap it below what is asked for.
|
|
398
|
+
*/
|
|
399
|
+
itemsPerPage?: number;
|
|
400
|
+
forceSync?: boolean;
|
|
401
|
+
connectionId?: string;
|
|
402
|
+
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
403
|
+
domain?: string;
|
|
404
|
+
/**
|
|
405
|
+
* Requests the lightweight row shape: identity, body, author, repository, branch refs and stack info,
|
|
406
|
+
* without review, check or diff statistics. It also replaces the flat per-facet default page size with a
|
|
407
|
+
* fixed budget shared across the search's ACTIVE facets, so with up to three of them it raises the page
|
|
408
|
+
* and from four on it LOWERS it — measured against GitHub, a 100-row budget versus a flat 30 each.
|
|
568
409
|
*
|
|
569
|
-
*
|
|
570
|
-
*
|
|
571
|
-
|
|
572
|
-
|
|
410
|
+
* A provider without a lightweight projection ignores it and returns its usual shape, so this is a hint
|
|
411
|
+
* rather than a contract about which fields are present.
|
|
412
|
+
*/
|
|
413
|
+
summary?: boolean;
|
|
414
|
+
}): Promise<ProviderPagedResult<PullRequestShape>>;
|
|
415
|
+
listIssuesPage(options: {
|
|
416
|
+
providerId: IntegrationIds;
|
|
417
|
+
repos?: ProviderRepositoriesInput;
|
|
418
|
+
/**
|
|
419
|
+
* Narrows the account-wide read (no `repos`) to one org/account, and `project` to one project within it.
|
|
420
|
+
* Only a git host with a project tier (Azure DevOps) can scope this server-side; for any other provider
|
|
421
|
+
* either option is rejected with a warning + `fetchFailed` rather than silently returning an unscoped
|
|
422
|
+
* list. Ignored when `repos` is supplied, since those repos are already the scope.
|
|
423
|
+
*/
|
|
424
|
+
org?: string;
|
|
425
|
+
project?: string;
|
|
426
|
+
/**
|
|
427
|
+
* Narrows to the requested relationship(s), validated against `getSupportedFilters().issues` on the
|
|
428
|
+
* repo-scoped path and `.issuesAccountWide` on the account-wide one.
|
|
573
429
|
*
|
|
574
|
-
*
|
|
575
|
-
*
|
|
576
|
-
*
|
|
430
|
+
* On the account-wide path this REPLACES the provider's own definition of "my issues" — GitHub/GHE
|
|
431
|
+
* authored + assigned + mentioned, Azure assigned + authored, and GitLab assigned-to-me — so
|
|
432
|
+
* `[Assignee]` gets `assignee:@me` semantics wherever it's expressible. Narrowing must happen here rather
|
|
433
|
+
* than on the returned page: the excluded items still counted toward the provider's paging, so filtering
|
|
434
|
+
* afterward leaves `items` describing a different result set than `hasMore`/`cursor`.
|
|
577
435
|
*
|
|
578
|
-
*
|
|
579
|
-
* and is safe to cache. A target whose chunk failed is NOT returned at all, so the two are distinguishable;
|
|
580
|
-
* caching a failure as an absence is exactly the bug this distinction prevents. GitHub/GHE only: a provider
|
|
581
|
-
* that cannot batch refuses outright rather than degrading into N requests behind the caller's back.
|
|
436
|
+
* A set the provider can't express server-side is refused whole (warning + `fetchFailed`), never widened.
|
|
582
437
|
*/
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
targets: readonly IssueBatchTarget[];
|
|
587
|
-
connectionId?: string;
|
|
588
|
-
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
589
|
-
domain?: string;
|
|
590
|
-
}): Promise<ProviderResult<IssueBatchResult>>;
|
|
438
|
+
filters?: IssueFilter[];
|
|
439
|
+
/** Broadens to every assignee. On account-wide reads it contradicts `filters`, so passing both is refused. */
|
|
440
|
+
includeAllAssignees?: boolean;
|
|
591
441
|
/**
|
|
592
|
-
*
|
|
593
|
-
*
|
|
594
|
-
*
|
|
595
|
-
*
|
|
596
|
-
* `
|
|
597
|
-
*
|
|
442
|
+
* How to order the page, as `field:direction` (e.g. `updated:desc`, `created:asc`). Omitted orders
|
|
443
|
+
* most-recently-updated-first wherever the provider can express it — this facade's default, not the
|
|
444
|
+
* provider's, which differ from each other.
|
|
445
|
+
*
|
|
446
|
+
* Validated against `getSupportedFilters().issueSorts` when `repos` is supplied and
|
|
447
|
+
* `.issueSortsAccountWide` when it isn't, and refused (warning + `fetchFailed`) rather than downgraded: at
|
|
448
|
+
* the provider's reachable window another order is another subset, so a silently different one is
|
|
449
|
+
* indistinguishable from the one asked for. Keep it fixed across a pagination.
|
|
450
|
+
*
|
|
451
|
+
* With SEVERAL repositories/projects the page is a merge of one query each, so only a key a normalized
|
|
452
|
+
* issue carries can be honored — `priority`, `dueDate` and `resolved` are refused there even where the
|
|
453
|
+
* provider supports them on a single scope. The order applies within a page; across pages it is per scope.
|
|
454
|
+
*/
|
|
455
|
+
sort?: IssueSorting;
|
|
456
|
+
/**
|
|
457
|
+
* Requested 1-based page. Without a `cursor` this may cost O(page) upstream requests on cursor-backed
|
|
458
|
+
* reads such as repo-scoped GitHub/GHE; aggregate single-page account-wide reads remain O(1).
|
|
459
|
+
*/
|
|
460
|
+
page?: number;
|
|
461
|
+
/** Continuation from a prior page's `cursor`; supplying it costs exactly one upstream request per scope. */
|
|
462
|
+
cursor?: string;
|
|
463
|
+
/**
|
|
464
|
+
* Page size PER QUERY, not per page. A page is a merge of one query per scope (repo-scoped) or per
|
|
465
|
+
* relationship category (account-wide GitHub: authored/assigned/mentioned), so it can return up to
|
|
466
|
+
* `N × itemsPerPage` items before deduplication. `page.itemsPerPage` reports what actually came back, so
|
|
467
|
+
* size the UI off that rather than off this. Account-wide GitLab, Azure and Linear reads ignore it and
|
|
468
|
+
* drain with their own bounds.
|
|
469
|
+
*/
|
|
470
|
+
itemsPerPage?: number;
|
|
471
|
+
forceSync?: boolean;
|
|
472
|
+
connectionId?: string;
|
|
473
|
+
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
474
|
+
domain?: string;
|
|
475
|
+
}): Promise<ProviderPagedResult<IssueShape>>;
|
|
476
|
+
/**
|
|
477
|
+
* Issues matching structured criteria over a repository/org scope, with NO forced relationship to the current
|
|
478
|
+
* user — the issue counterpart of the PR search, and the read to use for "every issue in these repos matching
|
|
479
|
+
* X" rather than "my issues".
|
|
480
|
+
*
|
|
481
|
+
* Why this and not {@link listIssuesPage}: that read is either bound to the user's own relationships
|
|
482
|
+
* (account-wide) or routed through the SDK's repo-scoped read, whose over-limit recovery walk can spend up to
|
|
483
|
+
* 128 sequential requests and still return an incomplete set. This one is a single request per page.
|
|
484
|
+
*
|
|
485
|
+
* Three parts of the contract worth reading before calling:
|
|
486
|
+
*
|
|
487
|
+
* - **Scope is mandatory.** Pass `repos`, `org`, or a user relationship (`authored`/`assigned`/`mentioned`).
|
|
488
|
+
* `any-assignee`/`unassigned` do NOT scope anything — either alone matches every such issue on the host —
|
|
489
|
+
* so a call carrying only those is refused (warning + `fetchFailed`).
|
|
490
|
+
* - **Ordering is `criteria.sort`**, most-recently-updated-first when omitted. It is validated like every other
|
|
491
|
+
* criterion (against `getSupportedFilters().issueSearch.sorts`) and refused rather than downgraded, and SOME
|
|
492
|
+
* order is always requested — a "show the N most recent" policy at the provider's result ceiling is only
|
|
493
|
+
* correct under a guaranteed one. Keep it fixed for the life of a pagination: a cursor is bound to the order
|
|
494
|
+
* that produced it, and threading it under a different key is REFUSED (warning + `fetchFailed`) rather than
|
|
495
|
+
* resumed into a differently-ordered set. To change the order, drop the cursor and read from the first page.
|
|
496
|
+
* - **At the result ceiling the read SUCCEEDS.** It reports an omission carrying `totalCount` (how many
|
|
497
|
+
* matched), `limit` (how many are reachable) and `sort` (the order that window was selected under) with
|
|
498
|
+
* `recovery: 'none'`, so a consumer can say "19.240 matched, showing the 1.000 most recent" — naming the
|
|
499
|
+
* order, since which 1.000 are reachable depends on it — and know not to offer a "load more". It never falls
|
|
500
|
+
* back to a per-repository recovery walk.
|
|
501
|
+
*
|
|
502
|
+
* Check `getSupportedFilters().issueSearch` first: a provider with no filtered issue search reports empty
|
|
503
|
+
* relationships (and this read refuses), and a criterion or sort key it can't express refuses the whole read
|
|
504
|
+
* rather than serving a wider or differently-ordered result than asked for.
|
|
505
|
+
*/
|
|
506
|
+
searchIssuesPage(options: {
|
|
507
|
+
providerId: IntegrationIds;
|
|
508
|
+
/**
|
|
509
|
+
* Repositories to search. Combines with `org`; both constrain the same query.
|
|
598
510
|
*
|
|
599
|
-
*
|
|
600
|
-
*
|
|
511
|
+
* Both halves of a descriptor must reach the provider unchanged — see `org` — since a search names a
|
|
512
|
+
* repository by its `namespace/name` path.
|
|
601
513
|
*/
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
514
|
+
repos?: ProviderRepositoriesInput;
|
|
515
|
+
/**
|
|
516
|
+
* Organization/account to search. Combines with `repos`.
|
|
517
|
+
*
|
|
518
|
+
* Held to a STRICTER rule than the free-form criteria, which are sanitized: a scope name carrying a quote,
|
|
519
|
+
* or an inner space or control character, is REFUSED (warning + `fetchFailed`), and the refusal names the
|
|
520
|
+
* value. Leading and trailing whitespace and control characters are stripped and accepted, since removing
|
|
521
|
+
* them cannot change which scope the query names.
|
|
522
|
+
* The sanitized value may name a real but DIFFERENT org, whose result looks entirely normal. `''` means
|
|
523
|
+
* "no org supplied" and falls through to the other scopes.
|
|
524
|
+
*/
|
|
525
|
+
org?: string;
|
|
526
|
+
criteria?: IssueSearchCriteria;
|
|
527
|
+
/**
|
|
528
|
+
* Requested 1-based page. This read is cursor-only, so without a `cursor` reaching page N costs O(N)
|
|
529
|
+
* upstream requests; pass the previous page's cursor to make it exactly one.
|
|
530
|
+
*/
|
|
531
|
+
page?: number;
|
|
532
|
+
cursor?: string;
|
|
612
533
|
/**
|
|
613
|
-
*
|
|
614
|
-
*
|
|
615
|
-
*
|
|
534
|
+
* Page size PER RELATIONSHIP, not per page. Each requested relationship is its own provider query, so a
|
|
535
|
+
* page of a 2-relationship search returns up to `2 × itemsPerPage` items before deduplication — and fewer
|
|
536
|
+
* than that when the two overlap. `page.itemsPerPage` reports what actually came back, so size the UI off
|
|
537
|
+
* that rather than off this. A provider may also cap it below what is asked for.
|
|
538
|
+
*/
|
|
539
|
+
itemsPerPage?: number;
|
|
540
|
+
forceSync?: boolean;
|
|
541
|
+
connectionId?: string;
|
|
542
|
+
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
543
|
+
domain?: string;
|
|
544
|
+
}): Promise<ProviderPagedResult<IssueShape>>;
|
|
545
|
+
/**
|
|
546
|
+
* How many issues MATCH each scope, without fetching any of them — the probe behind a "this will fetch ~N
|
|
547
|
+
* issues" preview, and behind a live count next to a filter the user hasn't applied yet.
|
|
548
|
+
*
|
|
549
|
+
* Cheap by design: every scope that can share a request does, and no issue data crosses the wire (measured
|
|
550
|
+
* against GitHub, 30 counts are a single rate-limit point). Still a network request per batch, so debounce and
|
|
551
|
+
* cache it if it's driven from UI state.
|
|
552
|
+
*
|
|
553
|
+
* A separate method rather than a flag on {@link searchIssuesPage} because transferring zero issues is the
|
|
554
|
+
* whole point: a `countOnly` read would hand back a paged result whose `items`/`cursor`/`hasMore` are all
|
|
555
|
+
* meaningless.
|
|
556
|
+
*
|
|
557
|
+
* Results are echoed under the caller's own `key`, so no positional matching is needed. Per-scope isolation is
|
|
558
|
+
* the rule: a scope refused for its own reasons, or a batch that failed upstream, warns and drops only its own
|
|
559
|
+
* scopes (with `fetchFailed` set) while every other count still comes back.
|
|
560
|
+
*
|
|
561
|
+
* `count: undefined` means the provider didn't report one — NOT zero, which is a real answer. Render the
|
|
562
|
+
* difference: showing an unknown count as 0 tells the user a filter matches nothing when it may match
|
|
563
|
+
* thousands. A provider that can't count at all (only GitHub/GHE can today) refuses the probe outright rather
|
|
564
|
+
* than returning fabricated numbers.
|
|
565
|
+
*/
|
|
566
|
+
countIssues(options: {
|
|
567
|
+
providerId: IntegrationIds;
|
|
568
|
+
/** Each needs its own scope, and each requested relationship its own entry — see {@link IssueCountScope}. */
|
|
569
|
+
scopes: readonly IssueCountScope[];
|
|
570
|
+
connectionId?: string;
|
|
571
|
+
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
572
|
+
domain?: string;
|
|
573
|
+
}): Promise<ProviderResult<IssueCountResult>>;
|
|
574
|
+
/**
|
|
575
|
+
* Resolves several issues BY COORDINATE — `(owner, repo, number)` — in one request.
|
|
576
|
+
*
|
|
577
|
+
* The read for "which issue does this branch name reference", which is an IDENTITY question rather than a
|
|
578
|
+
* search. Emulating it by paging a scoped list and matching the identifier cannot prove absence without
|
|
579
|
+
* walking the whole scope, so a miss stays unproven, uncacheable, and repeats its whole budget on every pass.
|
|
580
|
+
* This answers it in one request per chunk, and a miss is final.
|
|
581
|
+
*
|
|
582
|
+
* Results are echoed under the caller's own `key`, so no positional matching is needed. Per-target isolation
|
|
583
|
+
* is the rule: a chunk that fails upstream warns and drops only its own targets (with `fetchFailed` set) while
|
|
584
|
+
* every other target still answers.
|
|
585
|
+
*
|
|
586
|
+
* `issue: undefined` means PROVEN ABSENT — the issue does not exist, or is not visible to this connection —
|
|
587
|
+
* and is safe to cache. A target whose chunk failed is NOT returned at all, so the two are distinguishable;
|
|
588
|
+
* caching a failure as an absence is exactly the bug this distinction prevents. GitHub/GHE only: a provider
|
|
589
|
+
* that cannot batch refuses outright rather than degrading into N requests behind the caller's back.
|
|
590
|
+
*/
|
|
591
|
+
getIssuesBatch(options: {
|
|
592
|
+
providerId: IntegrationIds;
|
|
593
|
+
/** Each `key` must be unique — a duplicate refuses the whole call, since keys identify results. */
|
|
594
|
+
targets: readonly IssueBatchTarget[];
|
|
595
|
+
connectionId?: string;
|
|
596
|
+
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
597
|
+
domain?: string;
|
|
598
|
+
}): Promise<ProviderResult<IssueBatchResult>>;
|
|
599
|
+
/**
|
|
600
|
+
* Resolves one issue-tracker issue by key within a resource — the tracker counterpart of
|
|
601
|
+
* {@link getIssuesBatch}, which cannot serve one.
|
|
602
|
+
*
|
|
603
|
+
* `issue: undefined` is a proven absence and may be cached. A failed read returns no item and sets
|
|
604
|
+
* `fetchFailed`. `resourceId` is required and trusted; Jira also requires the resource's site URL so the result
|
|
605
|
+
* retains its browser link. The read performs no resource discovery.
|
|
606
|
+
*
|
|
607
|
+
* Jira and Linear only. Trello refuses: its single-issue read falls back to a capped board scan for a numeric
|
|
608
|
+
* identifier, so it cannot prove absence.
|
|
609
|
+
*/
|
|
610
|
+
getTrackerIssue(options: {
|
|
611
|
+
providerId: IntegrationIds;
|
|
612
|
+
/** Provider resource ID for the Atlassian site or Linear workspace. */
|
|
613
|
+
resourceId: string;
|
|
614
|
+
/** Jira site URL from resource discovery. Required for Jira so the result retains a browser link. */
|
|
615
|
+
resourceUrl?: string;
|
|
616
|
+
/** The provider's own key, e.g. `ABC-123`. Not a number. */
|
|
617
|
+
key: string;
|
|
618
|
+
connectionId?: string;
|
|
619
|
+
}): Promise<ProviderResult<TrackerIssueResult>>;
|
|
620
|
+
/**
|
|
621
|
+
* How many pull requests match each scope, fetching none of them — the PR twin of {@link countIssues}, behind a
|
|
622
|
+
* "this will fetch ~N pull requests" preview and a live count next to an unapplied filter. Same cost model,
|
|
623
|
+
* per-scope isolation, `key`-echo, and `count: undefined` ≠ zero rule as the issue count; GitHub/GHE only.
|
|
624
|
+
*
|
|
625
|
+
* The one PR-specific difference: a scope's `states` are counted as independent searches, so the reported count
|
|
626
|
+
* is the LARGEST of them (the same total {@link searchPullRequestsPage} surfaces), not their sum. Several states
|
|
627
|
+
* in one scope are therefore fine; only several relationships are refused — one relationship per scope, see
|
|
628
|
+
* {@link PullRequestCountScope}.
|
|
629
|
+
*/
|
|
630
|
+
countPullRequests(options: {
|
|
631
|
+
providerId: IntegrationIds;
|
|
632
|
+
scopes: readonly PullRequestCountScope[];
|
|
633
|
+
connectionId?: string;
|
|
634
|
+
/** Self-managed host domain fallback; see {@link ProviderSweepTarget.domain}. */
|
|
635
|
+
domain?: string;
|
|
636
|
+
}): Promise<ProviderResult<PullRequestCountResult>>;
|
|
637
|
+
listIssueTrackerIssuesPage(options: {
|
|
638
|
+
providerId: IntegrationIds;
|
|
639
|
+
org?: string;
|
|
640
|
+
project?: string;
|
|
641
|
+
filters?: IssueFilter[];
|
|
642
|
+
includeAllAssignees?: boolean;
|
|
643
|
+
/**
|
|
644
|
+
* How to order the issues, as `field:direction`. Omitted orders most-recently-updated-first where the
|
|
645
|
+
* tracker can express it; validated against `getSupportedFilters().issueSorts` and refused rather than
|
|
646
|
+
* downgraded. A page spanning several projects is a merge, so a key no normalized issue carries
|
|
647
|
+
* (`priority`, `dueDate`, `resolved`) is refused there.
|
|
616
648
|
*
|
|
617
|
-
*
|
|
618
|
-
*
|
|
619
|
-
|
|
620
|
-
|
|
649
|
+
* Safe to change between pages, unlike the git-host reads: this cursor windows PROJECTS and drains each in
|
|
650
|
+
* full, so which projects a round covers doesn't depend on how their issues are ordered.
|
|
651
|
+
*/
|
|
652
|
+
sort?: IssueSorting;
|
|
653
|
+
forceSync?: boolean;
|
|
654
|
+
page?: number;
|
|
655
|
+
/**
|
|
656
|
+
* Opaque continuation from a prior result. It can bundle the next untouched project window with failed
|
|
657
|
+
* discovery/project retries and already-emitted project identities, so it is not equivalent to `page`.
|
|
658
|
+
* Thread it back verbatim. A retry-only cursor can remain when `hasMore` is false; reusing that cursor is
|
|
659
|
+
* an explicit manual retry, while `hasMore` represents automatic forward progress only.
|
|
660
|
+
*/
|
|
661
|
+
cursor?: string;
|
|
662
|
+
/**
|
|
663
|
+
* Page size in PROJECTS, not issues (default 20): these providers have no cross-project issue cursor, so
|
|
664
|
+
* a page is a window of projects, each drained in full. Supplying it (or `page`/`cursor`) opts into
|
|
665
|
+
* pagination; omitting all three aggregates every matched project in one page.
|
|
666
|
+
*/
|
|
667
|
+
itemsPerPage?: number;
|
|
668
|
+
connectionId?: string;
|
|
669
|
+
/**
|
|
670
|
+
* Self-managed tracker host domain fallback; see {@link ProviderSweepTarget.domain}. Ignored for the
|
|
671
|
+
* cloud trackers, which have a single canonical host.
|
|
672
|
+
*/
|
|
673
|
+
domain?: string;
|
|
674
|
+
}): Promise<ProviderPagedResult<IssueShape>>;
|
|
675
|
+
sweepPullRequests(options?: PullRequestSweepOptions): Promise<ProviderSweepResult<PullRequestShape>>;
|
|
676
|
+
sweepClosedPullRequests(options?: ClosedPullRequestSweepOptions): Promise<ProviderSweepResult<PullRequestShape>>;
|
|
677
|
+
broadenIssues(options: {
|
|
678
|
+
orgs: ProviderBroadenOrg[];
|
|
679
|
+
/**
|
|
680
|
+
* Requested 1-based page. Without a `cursor` the fan-out is re-run once per prior page (O(page) rounds),
|
|
681
|
+
* since a per-org cursor bundle is the only way to address a later page.
|
|
621
682
|
*/
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
* (`priority`, `dueDate`, `resolved`) is refused there.
|
|
641
|
-
*
|
|
642
|
-
* Safe to change between pages, unlike the git-host reads: this cursor windows PROJECTS and drains each in
|
|
643
|
-
* full, so which projects a round covers doesn't depend on how their issues are ordered.
|
|
644
|
-
*/
|
|
645
|
-
sort?: IssueSorting;
|
|
646
|
-
forceSync?: boolean;
|
|
647
|
-
page?: number;
|
|
648
|
-
/**
|
|
649
|
-
* Opaque continuation from a prior result. It can bundle the next untouched project window with failed
|
|
650
|
-
* discovery/project retries and already-emitted project identities, so it is not equivalent to `page`.
|
|
651
|
-
* Thread it back verbatim. A retry-only cursor can remain when `hasMore` is false; reusing that cursor is
|
|
652
|
-
* an explicit manual retry, while `hasMore` represents automatic forward progress only.
|
|
653
|
-
*/
|
|
654
|
-
cursor?: string;
|
|
655
|
-
/**
|
|
656
|
-
* Page size in PROJECTS, not issues (default 20): these providers have no cross-project issue cursor, so
|
|
657
|
-
* a page is a window of projects, each drained in full. Supplying it (or `page`/`cursor`) opts into
|
|
658
|
-
* pagination; omitting all three aggregates every matched project in one page.
|
|
659
|
-
*/
|
|
660
|
-
itemsPerPage?: number;
|
|
661
|
-
connectionId?: string;
|
|
662
|
-
}): Promise<ProviderPagedResult<IssueShape>>;
|
|
663
|
-
sweepPullRequests(options?: PullRequestSweepOptions): Promise<ProviderSweepResult<PullRequestShape>>;
|
|
664
|
-
sweepClosedPullRequests(options?: ClosedPullRequestSweepOptions): Promise<ProviderSweepResult<PullRequestShape>>;
|
|
665
|
-
broadenIssues(options: {
|
|
666
|
-
orgs: ProviderBroadenOrg[];
|
|
667
|
-
/**
|
|
668
|
-
* Requested 1-based page. Without a `cursor` the fan-out is re-run once per prior page (O(page) rounds),
|
|
669
|
-
* since a per-org cursor bundle is the only way to address a later page.
|
|
670
|
-
*/
|
|
671
|
-
page?: number;
|
|
672
|
-
/** Continuation from a prior page's `cursor`; supplying it runs exactly one fan-out round. */
|
|
673
|
-
cursor?: string;
|
|
674
|
-
forceSync?: boolean;
|
|
675
|
-
}): Promise<ProviderBroadenResult<IssueShape>>;
|
|
676
|
-
resolveRepository(options: {
|
|
677
|
-
providerId?: IntegrationIds;
|
|
678
|
-
remoteUrl: string;
|
|
679
|
-
host?: string;
|
|
680
|
-
connectionId?: string;
|
|
681
|
-
/**
|
|
682
|
-
* Explicit self-managed host domain used to select the integration instance. It must come from trusted
|
|
683
|
-
* authentication configuration. Without it, the host parsed from `remoteUrl` is only a resolution
|
|
684
|
-
* candidate: the facade proceeds only when that host matches a configured integration, so repository
|
|
685
|
-
* data cannot select credentials for an arbitrary host.
|
|
686
|
-
*/
|
|
687
|
-
domain?: string;
|
|
688
|
-
}): Promise<ResolveRepositoryResult>;
|
|
683
|
+
page?: number;
|
|
684
|
+
/** Continuation from a prior page's `cursor`; supplying it runs exactly one fan-out round. */
|
|
685
|
+
cursor?: string;
|
|
686
|
+
forceSync?: boolean;
|
|
687
|
+
}): Promise<ProviderBroadenResult<IssueShape>>;
|
|
688
|
+
resolveRepository(options: {
|
|
689
|
+
providerId?: IntegrationIds;
|
|
690
|
+
remoteUrl: string;
|
|
691
|
+
host?: string;
|
|
692
|
+
connectionId?: string;
|
|
693
|
+
/**
|
|
694
|
+
* Explicit self-managed host domain used to select the integration instance. It must come from trusted
|
|
695
|
+
* authentication configuration. Without it, the host parsed from `remoteUrl` is only a resolution
|
|
696
|
+
* candidate: the facade proceeds only when that host matches a configured integration, so repository
|
|
697
|
+
* data cannot select credentials for an arbitrary host.
|
|
698
|
+
*/
|
|
699
|
+
domain?: string;
|
|
700
|
+
}): Promise<ResolveRepositoryResult>;
|
|
689
701
|
}
|
|
690
|
-
|
|
702
|
+
//#endregion
|
|
691
703
|
//# sourceMappingURL=manager.d.ts.map
|