@jambonz/schema 0.3.13 → 0.3.15
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/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"type": "object",
|
|
8
8
|
"properties": {
|
|
9
9
|
"verb": {
|
|
10
|
-
"
|
|
10
|
+
"enum": ["conference", "room"]
|
|
11
11
|
},
|
|
12
12
|
"id": {
|
|
13
13
|
"type": "string",
|
|
@@ -83,7 +83,12 @@
|
|
|
83
83
|
},
|
|
84
84
|
"listen": {
|
|
85
85
|
"type": "object",
|
|
86
|
-
"description": "Audio streaming configuration for the conference.",
|
|
86
|
+
"description": "Audio streaming configuration for the conference. `stream` is the preferred synonym.",
|
|
87
|
+
"additionalProperties": true
|
|
88
|
+
},
|
|
89
|
+
"stream": {
|
|
90
|
+
"type": "object",
|
|
91
|
+
"description": "Fork the room's mixed audio to a WebSocket (preferred synonym for `listen`).",
|
|
87
92
|
"additionalProperties": true
|
|
88
93
|
},
|
|
89
94
|
"distributeDtmf": {
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://jambonz.org/schema/verbs/room",
|
|
4
|
+
"minVersion": "0.9.6",
|
|
5
|
+
"title": "Room",
|
|
6
|
+
"description": "Places the caller into a multi-party room. `room` is a synonym for `conference` with identical shape and behavior, using the Voice-AI-friendly name; prefer `room` in new applications. The shape is defined entirely by the conference verb (referenced here) so the two never drift.",
|
|
7
|
+
"$ref": "conference"
|
|
8
|
+
}
|