@kb-labs/commit-core 2.73.0 → 2.75.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.
@@ -17,6 +17,10 @@ interface GenerateOptions {
17
17
  config?: _kb_labs_commit_contracts.CommitPluginConfig;
18
18
  /** Progress callback for UI updates (updates spinner text) */
19
19
  onProgress?: (message: string) => void;
20
+ /** Pause progress spinner before interactive prompts */
21
+ onPauseProgress?: () => void;
22
+ /** Resume progress spinner after interactive prompts */
23
+ onResumeProgress?: () => void;
20
24
  /** LLM completion function (optional - can be undefined if LLM disabled) */
21
25
  llmComplete?: LLMCompleteFunction;
22
26
  /** Allow committing files with detected secrets (requires manual confirmation) */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kb-labs/commit-core",
3
3
  "description": "Core business logic for KB Labs Commit plugin - git analysis, plan generation, and commit application.",
4
- "version": "2.73.0",
4
+ "version": "2.75.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -38,7 +38,7 @@
38
38
  "minimatch": "^10.0.1",
39
39
  "simple-git": "^3.25.0",
40
40
  "@kb-labs/sdk": "2.21.2",
41
- "@kb-labs/commit-contracts": "2.73.0"
41
+ "@kb-labs/commit-contracts": "2.75.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/node": "^24.3.3",
@@ -46,7 +46,7 @@
46
46
  "tsup": "^8.5.0",
47
47
  "typescript": "^5.6.3",
48
48
  "vitest": "^3.2.4",
49
- "@kb-labs/devkit": "2.73.0"
49
+ "@kb-labs/devkit": "2.75.0"
50
50
  },
51
51
  "engines": {
52
52
  "node": ">=20.0.0",