@probelabs/probe 0.6.0-rc140 → 0.6.0-rc141

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.
@@ -7097,7 +7097,7 @@ var init_common = __esm({
7097
7097
  end_line: external_exports.number().optional().describe("End line number for extracting a range of lines"),
7098
7098
  allow_tests: external_exports.boolean().optional().default(false).describe("Allow test files and test code blocks"),
7099
7099
  context_lines: external_exports.number().optional().default(10).describe("Number of context lines to include"),
7100
- format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, color)")
7100
+ format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, xml, color, outline-xml, outline-diff)")
7101
7101
  });
7102
7102
  delegateSchema = external_exports.object({
7103
7103
  task: external_exports.string().describe("The task to delegate to a subagent. Be specific about what needs to be accomplished.")
@@ -30,7 +30,7 @@ export const extractSchema = z.object({
30
30
  end_line: z.number().optional().describe('End line number for extracting a range of lines'),
31
31
  allow_tests: z.boolean().optional().default(false).describe('Allow test files and test code blocks'),
32
32
  context_lines: z.number().optional().default(10).describe('Number of context lines to include'),
33
- format: z.string().optional().default('plain').describe('Output format (plain, markdown, json, color)')
33
+ format: z.string().optional().default('plain').describe('Output format (plain, markdown, json, xml, color, outline-xml, outline-diff)')
34
34
  });
35
35
 
36
36
  export const delegateSchema = z.object({
@@ -32498,7 +32498,7 @@ var init_common2 = __esm({
32498
32498
  end_line: external_exports.number().optional().describe("End line number for extracting a range of lines"),
32499
32499
  allow_tests: external_exports.boolean().optional().default(false).describe("Allow test files and test code blocks"),
32500
32500
  context_lines: external_exports.number().optional().default(10).describe("Number of context lines to include"),
32501
- format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, color)")
32501
+ format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, xml, color, outline-xml, outline-diff)")
32502
32502
  });
32503
32503
  delegateSchema = external_exports.object({
32504
32504
  task: external_exports.string().describe("The task to delegate to a subagent. Be specific about what needs to be accomplished.")
package/cjs/index.cjs CHANGED
@@ -5498,7 +5498,7 @@ var init_common = __esm({
5498
5498
  end_line: external_exports.number().optional().describe("End line number for extracting a range of lines"),
5499
5499
  allow_tests: external_exports.boolean().optional().default(false).describe("Allow test files and test code blocks"),
5500
5500
  context_lines: external_exports.number().optional().default(10).describe("Number of context lines to include"),
5501
- format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, color)")
5501
+ format: external_exports.string().optional().default("plain").describe("Output format (plain, markdown, json, xml, color, outline-xml, outline-diff)")
5502
5502
  });
5503
5503
  delegateSchema = external_exports.object({
5504
5504
  task: external_exports.string().describe("The task to delegate to a subagent. Be specific about what needs to be accomplished.")
package/index.d.ts CHANGED
@@ -482,7 +482,7 @@ export declare function extract(
482
482
  path?: string,
483
483
  options?: {
484
484
  contextLines?: number;
485
- format?: 'markdown' | 'plain' | 'json';
485
+ format?: 'plain' | 'markdown' | 'json' | 'xml' | 'color' | 'outline-xml' | 'outline-diff';
486
486
  }
487
487
  ): Promise<any>;
488
488
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@probelabs/probe",
3
- "version": "0.6.0-rc140",
3
+ "version": "0.6.0-rc141",
4
4
  "description": "Node.js wrapper for the probe code search tool",
5
5
  "main": "src/index.js",
6
6
  "module": "src/index.js",
@@ -30,7 +30,7 @@ export const extractSchema = z.object({
30
30
  end_line: z.number().optional().describe('End line number for extracting a range of lines'),
31
31
  allow_tests: z.boolean().optional().default(false).describe('Allow test files and test code blocks'),
32
32
  context_lines: z.number().optional().default(10).describe('Number of context lines to include'),
33
- format: z.string().optional().default('plain').describe('Output format (plain, markdown, json, color)')
33
+ format: z.string().optional().default('plain').describe('Output format (plain, markdown, json, xml, color, outline-xml, outline-diff)')
34
34
  });
35
35
 
36
36
  export const delegateSchema = z.object({