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/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  version
3
- } from "./shared/chunk-m1xx8hzw.js";
3
+ } from "./shared/chunk-w5kw8sef.js";
4
4
  export {
5
5
  version
6
6
  };
@@ -2,8 +2,8 @@ import {
2
2
  createAuthCommandDependencies,
3
3
  createAuthStatusDependencies,
4
4
  createContainer
5
- } from "./chunk-0s7mxdt3.js";
6
- import"./chunk-m1xx8hzw.js";
5
+ } from "./chunk-zarrkzvq.js";
6
+ import"./chunk-w5kw8sef.js";
7
7
  export {
8
8
  createContainer,
9
9
  createAuthStatusDependencies,
@@ -1,6 +1,6 @@
1
1
  import { createRequire } from "node:module";
2
2
  var __require = /* @__PURE__ */ createRequire(import.meta.url);
3
3
  // package.json
4
- var version = "0.3.1";
4
+ var version = "0.3.2";
5
5
 
6
6
  export { __require, version };
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  __require,
3
3
  version
4
- } from "./chunk-m1xx8hzw.js";
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
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "githits",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Code examples from global open source for developers and AI assistants.",
5
5
  "mcpServers": {
6
6
  "githits": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "githits",
3
3
  "description": "CLI companion for GitHits - code examples from global open source for developers and AI assistants",
4
- "version": "0.3.1",
4
+ "version": "0.3.2",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "githits",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Code examples from global open source for developers and AI assistants",
5
5
  "author": {
6
6
  "name": "GitHits"