@jambonz/schema 0.3.4 → 0.3.6

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.
@@ -14,6 +14,10 @@
14
14
  "type": "string",
15
15
  "description": "ID of a Google Speech recognizer resource (v2 only)."
16
16
  },
17
+ "parentPath": {
18
+ "type": "string",
19
+ "description": "Parent resource path for the Google Speech recognizer (v2 only), e.g. 'projects/{project}/locations/{location}'."
20
+ },
17
21
  "speechStartTimeoutMs": {
18
22
  "type": "number",
19
23
  "description": "Timeout in milliseconds to wait for speech to start."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jambonz/schema",
3
- "version": "0.3.4",
3
+ "version": "0.3.6",
4
4
  "description": "JSON Schema definitions and validation for jambonz verb applications",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -22,8 +22,11 @@
22
22
  "description": "Text-to-speech configuration for the agent."
23
23
  },
24
24
  "autoLockLanguage": {
25
- "type": "boolean",
26
- "description": "When using Deepgram Flux Multilingual, automatically lock STT to the detected language after first utterance and switch TTS voice if configured in languageConfig. Default: false.",
25
+ "oneOf": [
26
+ { "type": "boolean" },
27
+ { "type": "string", "enum": ["always"] }
28
+ ],
29
+ "description": "When using Deepgram Flux Multilingual, automatically adjust STT language hints and switch TTS voice based on detected language. Values: false (disabled), true (lock on first utterance), 'always' (continuously adapt on every turn). Default: false.",
27
30
  "default": false
28
31
  },
29
32
  "languageConfig": {