plivo 4.39.0 → 4.40.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c451fadd27c08384818a03360ae048bd26f26c33
4
- data.tar.gz: 880265957250ef7d36bba99cfc3b48e7e0bcf18f
3
+ metadata.gz: 53994706ec6a6d40e9ec003fad9ccf5f0852acc1
4
+ data.tar.gz: e1a3004ce5d2b4ee64b9d6280db389debf57c9bd
5
5
  SHA512:
6
- metadata.gz: 25330d252d999bd2ea4c457c6e8a4590767fee788202878c458bc8bf640c0ac2e0417045148a3534e5e01fcee19dad614702596b725c5753d6495d88aed2fbea
7
- data.tar.gz: 8b27451d152c466f6cd713692d385aad0106dd1a2018ad97a54b2d28c9edf86b527a11d0c7fe8104b9dedb6b8ab88a8c6d88f991af986d9551250af39ca8fc86
6
+ metadata.gz: 0bf7f473f1b70a49f5c908becaeb3b1614cbc12ecf0f5675e0f7b6d8f8d481ae51371ccfb324f6dd1199794bfddffba043ea3847cf7b40928df93bc3590e4793
7
+ data.tar.gz: ae2e03e0bc55462723afdcc88641066f57f0b6d0927febc66dcec97b5e4ba77a33417096f90e4dcaacbe6a066a1be777c9034aa118f27d16cbb736efeebad1e1
data/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
1
  # Change Log
2
+
3
+
4
+ ## [4.40.0](https://github.com/plivo/plivo-ruby/tree/v4.37.0) (2023-04-11)
5
+ **Feature - Added New Param 'source_ip' in GetCall and ListCalls**
6
+ - Add `source_ip` to the response for the [retrieve a call details API](https://www.plivo.com/docs/voice/api/call#retrieve-a-call) and the [retreive all call details API](https://www.plivo.com/docs/voice/api/call#retrieve-all-calls)
7
+
2
8
  ## [4.39.0](https://github.com/plivo/plivo-ruby/tree/v4.39.0) (2023-03-17)
3
9
  **Adding new attribute - 'created_at' in List Profiles, Get Profile, List Brands, Get Brand, List Campaigns and Get Campaign APIs**
4
10
  - dding new attribute - 'created_at' in List Profiles, Get Profile, List Brands, Get Brand, List Campaigns and Get Campaign APIs
@@ -19,6 +25,12 @@
19
25
  - Added new fields on MDR object response
20
26
 
21
27
 
28
+
29
+ ## [4.37.0](https://github.com/plivo/plivo-ruby/tree/v4.37.0) (2023-02-06)
30
+ **Feature - Added New Param 'source_ip' in GetCall and ListCalls**
31
+ - Add `source_ip` to the response for the [retrieve a call details API](https://www.plivo.com/docs/voice/api/call#retrieve-a-call) and the [retreive all call details API](https://www.plivo.com/docs/voice/api/call#retrieve-all-calls)
32
+
33
+
22
34
  ## [4.36.0](https://github.com/plivo/plivo-ruby/tree/v4.36.0) (2022-01-25)
23
35
  **Adding new attribute - 'requester_ip' in Get Message and List Mssage APIs**
24
36
  - Add `requester_ip` to the response for the [list all messages API](https://www.plivo.com/docs/sms/api/message/list-all-messages/) and the [get message details API](https://www.plivo.com/docs/sms/api/message#retrieve-a-message)
data/README.md CHANGED
@@ -9,8 +9,9 @@ The Plivo Ruby SDK makes it simpler to integrate communications into your Ruby a
9
9
  Add this line to your application's Gemfile:
10
10
 
11
11
  ```ruby
12
+
12
13
  gem 'plivo', '>= 4.39.0'
13
- ```
14
+
14
15
 
15
16
  And then execute:
16
17
 
@@ -232,7 +232,8 @@ module Plivo
232
232
  direction: @direction,
233
233
  caller_name: @caller_name,
234
234
  stir_verification: @stir_verification,
235
- stir_attestation: @stir_attestation
235
+ stir_attestation: @stir_attestation,
236
+ source_ip: @source_ip
236
237
  }
237
238
  call_details = call_details.select {|k, v| !v.nil? }
238
239
  call_details.to_s
data/lib/plivo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Plivo
2
- VERSION = "4.39.0".freeze
2
+ VERSION = "4.40.0".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plivo
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.39.0
4
+ version: 4.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Plivo SDKs Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-17 00:00:00.000000000 Z
11
+ date: 2023-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday