vent-hq 0.8.28 → 0.8.29

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Stephan Gazarov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/dist/index.mjs CHANGED
@@ -5124,7 +5124,30 @@ var BasePlatformSchema = external_exports.object({
5124
5124
  var BlandPlatformSchema = BasePlatformSchema.extend({
5125
5125
  provider: external_exports.literal("bland"),
5126
5126
  bland_api_key: external_exports.string().optional(),
5127
- bland_pathway_id: external_exports.string().optional()
5127
+ bland_pathway_id: external_exports.string().optional(),
5128
+ task: external_exports.string().optional(),
5129
+ tools: external_exports.array(external_exports.unknown()).optional(),
5130
+ voice: external_exports.string().optional(),
5131
+ model: external_exports.string().optional(),
5132
+ first_sentence: external_exports.string().optional(),
5133
+ wait_for_greeting: external_exports.boolean().optional(),
5134
+ max_duration: external_exports.number().optional(),
5135
+ temperature: external_exports.number().min(0).max(1).optional(),
5136
+ language: external_exports.string().optional(),
5137
+ interruption_threshold: external_exports.number().optional(),
5138
+ block_interruptions: external_exports.boolean().optional(),
5139
+ noise_cancellation: external_exports.boolean().optional(),
5140
+ background_track: external_exports.string().nullable().optional(),
5141
+ keywords: external_exports.array(external_exports.string()).optional(),
5142
+ request_data: external_exports.record(external_exports.unknown()).optional(),
5143
+ pronunciation_guide: external_exports.array(external_exports.object({
5144
+ word: external_exports.string(),
5145
+ pronunciation: external_exports.string(),
5146
+ case_sensitive: external_exports.boolean().optional(),
5147
+ spaced: external_exports.boolean().optional()
5148
+ })).optional(),
5149
+ start_node_id: external_exports.string().optional(),
5150
+ pathway_version: external_exports.number().optional()
5128
5151
  });
5129
5152
  var LiveKitPlatformSchema = BasePlatformSchema.extend({
5130
5153
  provider: external_exports.literal("livekit"),
@@ -6724,7 +6747,7 @@ async function main() {
6724
6747
  return 0;
6725
6748
  }
6726
6749
  if (command === "--version" || command === "-v") {
6727
- const pkg = await import("./package-4ECJ3YJM.mjs");
6750
+ const pkg = await import("./package-YS3UNSUV.mjs");
6728
6751
  console.log(`vent-hq ${pkg.default.version}`);
6729
6752
  return 0;
6730
6753
  }
@@ -0,0 +1,51 @@
1
+ #!/usr/bin/env node
2
+ import "./chunk-U4M3XDTH.mjs";
3
+
4
+ // package.json
5
+ var package_default = {
6
+ name: "vent-hq",
7
+ version: "0.8.29",
8
+ type: "module",
9
+ description: "Vent CLI \u2014 CI/CD for voice AI agents",
10
+ bin: {
11
+ "vent-hq": "dist/index.mjs"
12
+ },
13
+ files: [
14
+ "dist"
15
+ ],
16
+ scripts: {
17
+ build: "node scripts/bundle.mjs",
18
+ clean: "rm -rf dist"
19
+ },
20
+ keywords: [
21
+ "vent",
22
+ "cli",
23
+ "voice",
24
+ "agent",
25
+ "testing",
26
+ "ci-cd"
27
+ ],
28
+ license: "MIT",
29
+ publishConfig: {
30
+ access: "public"
31
+ },
32
+ repository: {
33
+ type: "git",
34
+ url: "https://github.com/vent-hq/vent",
35
+ directory: "packages/cli"
36
+ },
37
+ homepage: "https://ventmcp.dev",
38
+ dependencies: {
39
+ "@clack/prompts": "^1.1.0",
40
+ ws: "^8.18.0"
41
+ },
42
+ devDependencies: {
43
+ "@types/ws": "^8.5.0",
44
+ "@vent/relay-client": "workspace:*",
45
+ "@vent/shared": "workspace:*",
46
+ esbuild: "^0.24.0"
47
+ }
48
+ };
49
+ export {
50
+ package_default as default
51
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vent-hq",
3
- "version": "0.8.28",
3
+ "version": "0.8.29",
4
4
  "type": "module",
5
5
  "description": "Vent CLI — CI/CD for voice AI agents",
6
6
  "bin": {
@@ -9,10 +9,6 @@
9
9
  "files": [
10
10
  "dist"
11
11
  ],
12
- "scripts": {
13
- "build": "node scripts/bundle.mjs",
14
- "clean": "rm -rf dist"
15
- },
16
12
  "keywords": [
17
13
  "vent",
18
14
  "cli",
@@ -37,8 +33,12 @@
37
33
  },
38
34
  "devDependencies": {
39
35
  "@types/ws": "^8.5.0",
40
- "@vent/relay-client": "workspace:*",
41
- "@vent/shared": "workspace:*",
42
- "esbuild": "^0.24.0"
36
+ "esbuild": "^0.24.0",
37
+ "@vent/shared": "0.0.1",
38
+ "@vent/relay-client": "0.1.0"
39
+ },
40
+ "scripts": {
41
+ "build": "node scripts/bundle.mjs",
42
+ "clean": "rm -rf dist"
43
43
  }
44
- }
44
+ }