githits 0.3.1 → 0.3.2
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.plugin/plugin.json +1 -1
- package/dist/cli.js +878 -169
- package/dist/index.js +1 -1
- package/dist/shared/{chunk-zg5dnven.js → chunk-rwcs5gyy.js} +2 -2
- package/dist/shared/{chunk-m1xx8hzw.js → chunk-w5kw8sef.js} +1 -1
- package/dist/shared/{chunk-0s7mxdt3.js → chunk-zarrkzvq.js} +34 -1
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
- package/plugins/claude/.claude-plugin/plugin.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
createAuthCommandDependencies,
|
|
3
3
|
createAuthStatusDependencies,
|
|
4
4
|
createContainer
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import"./chunk-
|
|
5
|
+
} from "./chunk-zarrkzvq.js";
|
|
6
|
+
import"./chunk-w5kw8sef.js";
|
|
7
7
|
export {
|
|
8
8
|
createContainer,
|
|
9
9
|
createAuthStatusDependencies,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
__require,
|
|
3
3
|
version
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-w5kw8sef.js";
|
|
5
5
|
|
|
6
6
|
// src/services/app-config-paths.ts
|
|
7
7
|
var APP_DIR = "githits";
|
|
@@ -1670,6 +1670,16 @@ query ListRepoFiles(
|
|
|
1670
1670
|
$gitRef: String
|
|
1671
1671
|
$version: String
|
|
1672
1672
|
$pathPrefix: String
|
|
1673
|
+
$pathSelectors: [FilePathSelectorInput!]
|
|
1674
|
+
$extensions: [String!]
|
|
1675
|
+
$fileTypes: [String!]
|
|
1676
|
+
$languages: [String!]
|
|
1677
|
+
$fileIntent: FileIntent
|
|
1678
|
+
$fileIntents: [FileIntent!]
|
|
1679
|
+
$excludeFileIntents: [FileIntent!]
|
|
1680
|
+
$excludeDocFiles: Boolean
|
|
1681
|
+
$excludeTestFiles: Boolean
|
|
1682
|
+
$includeHidden: Boolean
|
|
1673
1683
|
$limit: Int
|
|
1674
1684
|
$waitTimeoutMs: Int
|
|
1675
1685
|
) {
|
|
@@ -1680,6 +1690,16 @@ query ListRepoFiles(
|
|
|
1680
1690
|
gitRef: $gitRef
|
|
1681
1691
|
version: $version
|
|
1682
1692
|
pathPrefix: $pathPrefix
|
|
1693
|
+
pathSelectors: $pathSelectors
|
|
1694
|
+
extensions: $extensions
|
|
1695
|
+
fileTypes: $fileTypes
|
|
1696
|
+
languages: $languages
|
|
1697
|
+
fileIntent: $fileIntent
|
|
1698
|
+
fileIntents: $fileIntents
|
|
1699
|
+
excludeFileIntents: $excludeFileIntents
|
|
1700
|
+
excludeDocFiles: $excludeDocFiles
|
|
1701
|
+
excludeTestFiles: $excludeTestFiles
|
|
1702
|
+
includeHidden: $includeHidden
|
|
1683
1703
|
limit: $limit
|
|
1684
1704
|
waitTimeoutMs: $waitTimeoutMs
|
|
1685
1705
|
) {
|
|
@@ -2294,6 +2314,19 @@ class CodeNavigationServiceImpl {
|
|
|
2294
2314
|
gitRef: params.target.gitRef,
|
|
2295
2315
|
version: params.target.version,
|
|
2296
2316
|
pathPrefix: params.pathPrefix,
|
|
2317
|
+
pathSelectors: params.pathSelectors?.map((entry) => ({
|
|
2318
|
+
kind: entry.kind,
|
|
2319
|
+
value: entry.value
|
|
2320
|
+
})),
|
|
2321
|
+
extensions: params.extensions,
|
|
2322
|
+
fileTypes: params.fileTypes,
|
|
2323
|
+
languages: params.languages,
|
|
2324
|
+
fileIntent: params.fileIntent,
|
|
2325
|
+
fileIntents: params.fileIntents,
|
|
2326
|
+
excludeFileIntents: params.excludeFileIntents,
|
|
2327
|
+
excludeDocFiles: params.excludeDocFiles,
|
|
2328
|
+
excludeTestFiles: params.excludeTestFiles,
|
|
2329
|
+
includeHidden: params.includeHidden,
|
|
2297
2330
|
limit: params.limit,
|
|
2298
2331
|
waitTimeoutMs: params.waitTimeoutMs
|
|
2299
2332
|
},
|
package/gemini-extension.json
CHANGED
package/package.json
CHANGED