@google/gemini-cli 0.1.16 → 0.1.17

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.
Files changed (60) hide show
  1. package/dist/google-gemini-cli-0.1.16.tgz +0 -0
  2. package/dist/package.json +2 -2
  3. package/dist/src/config/config.d.ts +0 -1
  4. package/dist/src/config/config.js +3 -4
  5. package/dist/src/config/config.js.map +1 -1
  6. package/dist/src/config/settings.d.ts +7 -1
  7. package/dist/src/config/settings.js +50 -5
  8. package/dist/src/config/settings.js.map +1 -1
  9. package/dist/src/generated/git-commit.d.ts +1 -1
  10. package/dist/src/generated/git-commit.js +1 -1
  11. package/dist/src/ui/App.js +4 -6
  12. package/dist/src/ui/App.js.map +1 -1
  13. package/dist/src/ui/commands/helpCommand.js +7 -6
  14. package/dist/src/ui/commands/helpCommand.js.map +1 -1
  15. package/dist/src/ui/commands/ideCommand.js +23 -11
  16. package/dist/src/ui/commands/ideCommand.js.map +1 -1
  17. package/dist/src/ui/commands/mcpCommand.js +15 -20
  18. package/dist/src/ui/commands/mcpCommand.js.map +1 -1
  19. package/dist/src/ui/commands/setupGithubCommand.js +2 -3
  20. package/dist/src/ui/commands/setupGithubCommand.js.map +1 -1
  21. package/dist/src/ui/commands/types.d.ts +1 -1
  22. package/dist/src/ui/components/HistoryItemDisplay.d.ts +2 -0
  23. package/dist/src/ui/components/HistoryItemDisplay.js +2 -1
  24. package/dist/src/ui/components/HistoryItemDisplay.js.map +1 -1
  25. package/dist/src/ui/components/InputPrompt.js +76 -7
  26. package/dist/src/ui/components/InputPrompt.js.map +1 -1
  27. package/dist/src/ui/components/PrepareLabel.d.ts +15 -0
  28. package/dist/src/ui/components/PrepareLabel.js +16 -0
  29. package/dist/src/ui/components/PrepareLabel.js.map +1 -0
  30. package/dist/src/ui/components/SuggestionsDisplay.d.ts +1 -0
  31. package/dist/src/ui/components/SuggestionsDisplay.js +3 -3
  32. package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -1
  33. package/dist/src/ui/hooks/atCommandProcessor.js +11 -4
  34. package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -1
  35. package/dist/src/ui/hooks/slashCommandProcessor.d.ts +1 -1
  36. package/dist/src/ui/hooks/slashCommandProcessor.js +7 -5
  37. package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
  38. package/dist/src/ui/hooks/useCommandCompletion.d.ts +24 -0
  39. package/dist/src/ui/hooks/useCommandCompletion.js +453 -0
  40. package/dist/src/ui/hooks/useCommandCompletion.js.map +1 -0
  41. package/dist/src/ui/hooks/useCompletion.d.ts +5 -5
  42. package/dist/src/ui/hooks/useCompletion.js +7 -423
  43. package/dist/src/ui/hooks/useCompletion.js.map +1 -1
  44. package/dist/src/ui/hooks/useGeminiStream.d.ts +1 -1
  45. package/dist/src/ui/hooks/useGeminiStream.js +1 -3
  46. package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
  47. package/dist/src/ui/hooks/useReverseSearchCompletion.d.ts +19 -0
  48. package/dist/src/ui/hooks/useReverseSearchCompletion.js +54 -0
  49. package/dist/src/ui/hooks/useReverseSearchCompletion.js.map +1 -0
  50. package/dist/src/ui/hooks/useShellHistory.d.ts +1 -0
  51. package/dist/src/ui/hooks/useShellHistory.js +30 -7
  52. package/dist/src/ui/hooks/useShellHistory.js.map +1 -1
  53. package/dist/src/ui/types.d.ts +10 -1
  54. package/dist/src/ui/types.js +1 -0
  55. package/dist/src/ui/types.js.map +1 -1
  56. package/dist/src/utils/handleAutoUpdate.js +3 -0
  57. package/dist/src/utils/handleAutoUpdate.js.map +1 -1
  58. package/dist/tsconfig.tsbuildinfo +1 -1
  59. package/package.json +3 -3
  60. package/dist/google-gemini-cli-0.1.15.tgz +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google/gemini-cli",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "description": "Gemini CLI",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,10 +25,10 @@
25
25
  "dist"
26
26
  ],
27
27
  "config": {
28
- "sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.16"
28
+ "sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.17"
29
29
  },
30
30
  "dependencies": {
31
- "@google/gemini-cli-core": "0.1.16",
31
+ "@google/gemini-cli-core": "0.1.17",
32
32
  "@google/genai": "1.9.0",
33
33
  "@iarna/toml": "^2.2.5",
34
34
  "@types/update-notifier": "^6.0.8",
Binary file