@audc/rtpengine-client 0.5.3 → 0.5.4
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/index.d.ts +3 -2
- package/package.json +9 -9
package/index.d.ts
CHANGED
|
@@ -243,6 +243,7 @@ export interface StopRecordingArgs extends BaseArgs {
|
|
|
243
243
|
'from-tag'?: string;
|
|
244
244
|
'to-tag'?: string;
|
|
245
245
|
'via-branch'?: string;
|
|
246
|
+
metadata?: string;
|
|
246
247
|
}
|
|
247
248
|
|
|
248
249
|
// Start recording parameters
|
|
@@ -255,8 +256,8 @@ export interface StartRecordingArgs extends StopRecordingArgs {
|
|
|
255
256
|
export interface MediaOpArgs extends BaseArgs {
|
|
256
257
|
'call-id': string;
|
|
257
258
|
'from-tag'?: string;
|
|
258
|
-
|
|
259
|
-
|
|
259
|
+
address?: string;
|
|
260
|
+
label?: string;
|
|
260
261
|
}
|
|
261
262
|
|
|
262
263
|
// Play Media parameters
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@audc/rtpengine-client",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "node client for rtpengine daemon",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -16,28 +16,28 @@
|
|
|
16
16
|
"lib/"
|
|
17
17
|
],
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@eslint/js": "^9.
|
|
19
|
+
"@eslint/js": "^9.39.2",
|
|
20
20
|
"@types/bencode": "^2.0.4",
|
|
21
21
|
"@types/tape": "^5.8.1",
|
|
22
|
-
"@types/ws": "^8.
|
|
22
|
+
"@types/ws": "^8.18.1",
|
|
23
23
|
"c8": "^10.1.3",
|
|
24
|
-
"debug": "^4.4.
|
|
25
|
-
"eslint": "^9.
|
|
24
|
+
"debug": "^4.4.3",
|
|
25
|
+
"eslint": "^9.39.2",
|
|
26
26
|
"eslint-plugin-promise": "^7.2.1",
|
|
27
|
-
"globals": "^
|
|
28
|
-
"sinon": "^
|
|
27
|
+
"globals": "^17.0.0",
|
|
28
|
+
"sinon": "^21.0.1",
|
|
29
29
|
"tape": "^5.9.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"bencode": "^2.0.3",
|
|
33
33
|
"uuid-random": "^1.3.2",
|
|
34
|
-
"ws": "^8.
|
|
34
|
+
"ws": "^8.19.0"
|
|
35
35
|
},
|
|
36
36
|
"keywords": [
|
|
37
37
|
"rtpengine"
|
|
38
38
|
],
|
|
39
39
|
"repository": {
|
|
40
40
|
"type": "git",
|
|
41
|
-
"url": "https://github.com/
|
|
41
|
+
"url": "https://github.com/audiocodes/rtpengine-client"
|
|
42
42
|
}
|
|
43
43
|
}
|