@boolesai/tspec-cli 1.3.0 → 1.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boolesai/tspec-cli",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "CLI for @boolesai/tspec testing framework",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,7 +22,7 @@
22
22
  "prepublishOnly": "npm run build"
23
23
  },
24
24
  "dependencies": {
25
- "@boolesai/tspec": "1.3.0",
25
+ "@boolesai/tspec": "1.3.1",
26
26
  "@modelcontextprotocol/sdk": "^1.0.0",
27
27
  "chalk": "^5.0.0",
28
28
  "commander": "^12.0.0",
@@ -6,6 +6,9 @@ export interface ParseParams {
6
6
  verbose?: boolean;
7
7
  env?: Record<string, string>;
8
8
  params?: Record<string, string>;
9
+ noProxy?: boolean;
10
+ proxyUrl?: string;
11
+ config?: string;
9
12
  }
10
13
  export interface ParseExecutionResult {
11
14
  success: boolean;
@@ -10,6 +10,8 @@ export interface RunParams {
10
10
  failFast?: boolean;
11
11
  config?: string;
12
12
  noAutoInstall?: boolean;
13
+ noProxy?: boolean;
14
+ proxyUrl?: string;
13
15
  env?: Record<string, string>;
14
16
  params?: Record<string, string>;
15
17
  }
@@ -3,6 +3,9 @@ import type { OutputFormat } from '../utils/formatter.js';
3
3
  export interface ValidateParams {
4
4
  files: string[];
5
5
  output?: OutputFormat;
6
+ noProxy?: boolean;
7
+ proxyUrl?: string;
8
+ config?: string;
6
9
  }
7
10
  export interface ValidateExecutionResult {
8
11
  success: boolean;