ruby-bandwidth-iris 3.0.1 → 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/lib/bandwidth-iris/dlda.rb +1 -1
- data/lib/bandwidth-iris/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f848141460dbc00663529dd048bdb76e1a8e26860c18ece42b62e607ad97330
|
4
|
+
data.tar.gz: 9d7cd88f53989bc55a452eb1a14654cf4887dddc81263aaadb6da1aaaf9e3b1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b9a1d38bda953a82a7513bb6160c6689a2bdd893d7c04175c52c09da8baca93a8b28aa74c9541246e74e2ee212ae46cdcb8dafe936188d5baac9c7f9c7735cf
|
7
|
+
data.tar.gz: c5b16c0e5407e8f3efb7c20a87503b27fbb36b27fe68fc1cd6d7678a4614ff42cb28b8b0eca6414c974d581b9f17f1479c8a8eea336378f01be97650666f8c23
|
data/README.md
CHANGED
@@ -20,6 +20,7 @@ Ruby Client library for IRIS / BBS API
|
|
20
20
|
| 2.6.0 | Added Emergency Calling Notification, Emergeny Notification Group, Emergency Notification Endpoint, and Alternate End User Identity methods |
|
21
21
|
| 2.7.0 | Added TNOptions endpoints |
|
22
22
|
| 3.0.0 | Removed functionality that causes an error to be raised when some type of `error` field is returned in the XML body response. This change reduces the situations that cause an error to be thrown to simply be 4XX and 5XX http responses. This change was made to improve communication when an error is found. Please update your code to handle this change. |
|
23
|
+
| 3.0.2 | Fixed an incorrect retrieval of DLDA objects |
|
23
24
|
|
24
25
|
### 3.x.x release
|
25
26
|
|
@@ -459,6 +460,7 @@ BandwidthIris::RateCenter.list(query)
|
|
459
460
|
|
460
461
|
## SIP Peers
|
461
462
|
### Create SIP Peer
|
463
|
+
A Sip Peer is what is called Location in the web UI.
|
462
464
|
```ruby
|
463
465
|
data = {
|
464
466
|
:peer_name => "A New SIP Peer",
|
@@ -521,7 +523,7 @@ sipPeer.move_tns(numbers_to_move)
|
|
521
523
|
## Sites
|
522
524
|
|
523
525
|
### Create A Site
|
524
|
-
A site is what is called
|
526
|
+
A site is what is called Sub-Account in the web UI.
|
525
527
|
```ruby
|
526
528
|
site = {
|
527
529
|
:name =>"A new site",
|
data/lib/bandwidth-iris/dlda.rb
CHANGED
@@ -17,7 +17,7 @@ module BandwidthIris
|
|
17
17
|
wrap_client_arg :list
|
18
18
|
|
19
19
|
def self.get(client, id)
|
20
|
-
data = client.make_request(:get, "#{client.concat_account_path(DLDA_PATH)}/#{id}")[0]
|
20
|
+
data = client.make_request(:get, "#{client.concat_account_path(DLDA_PATH)}/#{id}")[0]
|
21
21
|
data[:id] = data[:order_id]
|
22
22
|
Dlda.new(data, client)
|
23
23
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-bandwidth-iris
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrey Belchikov
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: builder
|
@@ -137,7 +137,7 @@ dependencies:
|
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: '0'
|
139
139
|
description: Gem for integrating to Bandwidth's Iris API
|
140
|
-
email:
|
140
|
+
email:
|
141
141
|
executables: []
|
142
142
|
extensions: []
|
143
143
|
extra_rdoc_files: []
|
@@ -247,7 +247,7 @@ homepage: https://github.com/bandwidthcom/ruby-bandwidth-iris
|
|
247
247
|
licenses:
|
248
248
|
- MIT
|
249
249
|
metadata: {}
|
250
|
-
post_install_message:
|
250
|
+
post_install_message:
|
251
251
|
rdoc_options: []
|
252
252
|
require_paths:
|
253
253
|
- lib
|
@@ -263,7 +263,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
263
263
|
version: '0'
|
264
264
|
requirements: []
|
265
265
|
rubygems_version: 3.0.6
|
266
|
-
signing_key:
|
266
|
+
signing_key:
|
267
267
|
specification_version: 4
|
268
268
|
summary: Gem for integrating to Bandwidth's Iris API
|
269
269
|
test_files:
|