@audc/rtpengine-client 0.5.3 → 0.5.5
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 +4 -2
- package/package.json +9 -9
package/index.d.ts
CHANGED
|
@@ -155,6 +155,7 @@ interface BaseResponse {
|
|
|
155
155
|
|
|
156
156
|
export interface OfferResponse extends BaseResponse {
|
|
157
157
|
sdp: string;
|
|
158
|
+
recordings?: string[];
|
|
158
159
|
}
|
|
159
160
|
|
|
160
161
|
// Delete parameters (as you provided)
|
|
@@ -243,6 +244,7 @@ export interface StopRecordingArgs extends BaseArgs {
|
|
|
243
244
|
'from-tag'?: string;
|
|
244
245
|
'to-tag'?: string;
|
|
245
246
|
'via-branch'?: string;
|
|
247
|
+
metadata?: string;
|
|
246
248
|
}
|
|
247
249
|
|
|
248
250
|
// Start recording parameters
|
|
@@ -255,8 +257,8 @@ export interface StartRecordingArgs extends StopRecordingArgs {
|
|
|
255
257
|
export interface MediaOpArgs extends BaseArgs {
|
|
256
258
|
'call-id': string;
|
|
257
259
|
'from-tag'?: string;
|
|
258
|
-
|
|
259
|
-
|
|
260
|
+
address?: string;
|
|
261
|
+
label?: string;
|
|
260
262
|
}
|
|
261
263
|
|
|
262
264
|
// 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.5",
|
|
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
|
}
|