ruby_rabbitmq_janus 2.5.0.pre.209 → 2.5.0.pre.210

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e87ce388289e4d5fd839bce016e512e276d9d9499c2bb3807722128003661ae
4
- data.tar.gz: ae2ea0b3a322c27562f795398c52ab06f4b25892941385f0395f908e111b3bbf
3
+ metadata.gz: c915b9a02b58b280c212d94bac96e0cc8b7bac8752e0c728fa66658d63ea2191
4
+ data.tar.gz: 83d25b3aa52dacca03c7a45a9ea68261372f1a412340cadeba7049f7bdfbacaf
5
5
  SHA512:
6
- metadata.gz: a946627cebd96f61d2cf67e334303ce245e033e8d2c3b9ca644c893df04e6ac2dc19ad16d4d8ceb85d33a6267bf046966a94cb9176254819ff2ce8e5ef11dd67
7
- data.tar.gz: 75faa8210db70496bf3324b07f1fa5e858e07b95de5787d8d4d6c12338268446102615e99124a43cd86f503a9a59aa2d2db87f67b65ed8efc83e5ee6074e5cc9
6
+ metadata.gz: bb73fd9007791fc59aa4cfbd3cb22a2bdbed762876f50f98567e2bfbbefa528fd55a89f21515838cdfcdcaad4d445dc843c8e880c00fecb5835b739ac891d623
7
+ data.tar.gz: 1c6abdd92e1b8ff36738955637add5df8266eadbed35957977962d842c2c3c9a8ea410b6b31aa7bc6d387061c28dbbffe7244d15a97ee5d862a84f8a6abe1a47
data/config/requests.md CHANGED
@@ -6,10 +6,20 @@ By default this gem contains many request :
6
6
 
7
7
  ```linux
8
8
  ├── admin
9
+ │   ├── add_token.json
10
+ │   ├── allow_token.json
11
+ │   ├── disallow_token.json
9
12
  │   ├── handle_info.json
10
13
  │   ├── handles.json
11
- │   ├── log_level.json
12
- │   └── sessions.json
14
+ │   ├── remove_token.json
15
+ │   ├── sessions.json
16
+ │   ├── set_locking_debug.json
17
+ │   ├── set_log_level.json
18
+ │   ├── start_pcap.json
19
+ │   ├── start_text2pcap.json
20
+ │   ├── stop_pcap.json
21
+ │   ├── stop_text2pcap.json
22
+ │   └── tokens.json
13
23
  ├── base
14
24
  │   ├── attach.json
15
25
  │   ├── create.json
@@ -20,8 +30,7 @@ By default this gem contains many request :
20
30
  ├── peer
21
31
  │   ├── answer.json
22
32
  │   ├── offer.json
23
- │   ├── trickle.json
24
- │   ├── trickles.json
33
+ │   └── trickle.json
25
34
  ```
26
35
 
27
36
  * Folder `admin` contains admin requests for interact with Janus Admin/Monitor
@@ -43,14 +52,18 @@ Example base request with type `'base::info'` :
43
52
 
44
53
  For more explain to construct request sending to Janus [see official documentation](https://janus.conf.meetecho.com/docs/rest.html).
45
54
 
46
- Some fields are customizables. For this fields is a gem to apply a transformation :
55
+ Some fields are customizable. For this fields is a gem to apply a transformation :
47
56
 
48
57
  * session_id
49
58
  * handle_id
50
59
  * transaction
51
60
  * candidate
52
- * admin_secret - *just for admin secret*
53
- * level - *just for admin secret*
61
+ * *Admin transaction*
62
+ * admin_secret
63
+ * level
64
+ * folder
65
+ * filename
66
+ * truncate
54
67
 
55
68
  Each fields use an type :
56
69
 
@@ -0,0 +1,8 @@
1
+ {
2
+ "janus": "start_pcap",
3
+ "folder" : "<string>",
4
+ "filename" : "<string>",
5
+ "truncate" : "<number>",
6
+ "transaction": "<transaction>",
7
+ "admin_secret": "<string>"
8
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "janus": "start_text2pcap",
3
+ "transaction": "<transaction>",
4
+ "session_id": "<number>",
5
+ "handle_id": "<number>",
6
+ "admin_secret": "<string>",
7
+ "folder" : "<string>",
8
+ "filename" : "<string>",
9
+ "truncate" : "<number>"
10
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "janus": "stop_pcap",
3
+ "transaction": "<transaction>",
4
+ "admin_secret": "<string>"
5
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "janus": "stop_pcap",
3
+ "transaction": "<transaction>",
4
+ "session_id": "<number>",
5
+ "handle_id": "<number>",
6
+ "admin_secret": "<string>"
7
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_rabbitmq_janus
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0.pre.209
4
+ version: 2.5.0.pre.210
5
5
  platform: ruby
6
6
  authors:
7
7
  - VAILLANT Jeremy
@@ -388,6 +388,10 @@ files:
388
388
  - config/requests/admin/sessions.json
389
389
  - config/requests/admin/set_locking_debug.json
390
390
  - config/requests/admin/set_log_level.json
391
+ - config/requests/admin/start_pcap.json
392
+ - config/requests/admin/start_text2pcap.json
393
+ - config/requests/admin/stop_pcap.json
394
+ - config/requests/admin/stop_text2pcap.json
391
395
  - config/requests/admin/tokens.json
392
396
  - config/requests/base/attach.json
393
397
  - config/requests/base/create.json