@optiqcode/cli 1.1.0 → 1.2.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.
@@ -73,7 +73,7 @@ export async function index(options) {
73
73
  Authorization: `Bearer ${config.apiKey}`,
74
74
  'Content-Type': 'application/json',
75
75
  },
76
- timeout: 120000,
76
+ timeout: 0, // No timeout for large codebases
77
77
  });
78
78
  if (response.data.success) {
79
79
  spinner.succeed(chalk.green('✓ Indexing complete'));
package/dist/index.js CHANGED
@@ -194,7 +194,7 @@ async function indexOnce(targetPath, config) {
194
194
  'X-API-Key': config.apiKey,
195
195
  'Content-Type': 'application/json',
196
196
  },
197
- timeout: 120000,
197
+ timeout: 0, // No timeout for large codebases
198
198
  });
199
199
  if (response.data.success) {
200
200
  spinner.succeed(chalk.white('✓ Indexing complete'));
@@ -274,7 +274,7 @@ async function watchDirectory(targetPath, config) {
274
274
  'X-API-Key': config.apiKey,
275
275
  'Content-Type': 'application/json',
276
276
  },
277
- timeout: 120000,
277
+ timeout: 0, // No timeout for large codebases
278
278
  });
279
279
  if (response.data.success) {
280
280
  repoId = response.data.repo_id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optiqcode/cli",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "CLI tool for Optiq - automatic code indexing and context engine",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",