answering machine detection

This commit is contained in:
Dave Horton
2022-07-19 09:58:07 +02:00
parent 4ca013084f
commit 32587a2dc7
3 changed files with 246 additions and 483 deletions

View File

@@ -37,7 +37,8 @@
"synthesizer": "#synthesizer",
"recognizer": "#recognizer",
"bargeIn": "#bargeIn",
"record": "#recordOptions"
"record": "#recordOptions",
"amd": "#amd"
},
"required": []
},
@@ -172,7 +173,8 @@
"timeLimit": "number",
"timeout": "number",
"proxy": "string",
"transcribe": "#transcribe"
"transcribe": "#transcribe",
"amd": "#amd"
},
"required": [
"target"
@@ -517,5 +519,17 @@
"required": [
"enable"
]
},
"amd": {
"properties": {
"actionHook": "object|string",
"thresholdWordCount": "number",
"resolveTimeoutMs": "number",
"beep": "boolean",
"recognizer": "#recognizer"
},
"required": [
"actionHook"
]
}
}

705
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "@jambonz/node-client",
"version": "0.3.21",
"version": "0.3.22",
"description": "Node.js client for building jambonz applications (jambonz.org)",
"main": "lib/index.js",
"scripts": {
@@ -21,8 +21,8 @@
"pino": "^7.8.0"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-plugin-promise": "^4.3.1",
"eslint": "^8.20.0",
"eslint-plugin-promise": "^6.0.0",
"nyc": "^15.1.0",
"tape": "^5.2.0"
},