plivo 4.60.2 → 4.60.3

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
  SHA1:
3
- metadata.gz: 6898e61d78d4bfd1055c70207a612808308161f2
4
- data.tar.gz: 21375522df6afefed4217a9f1485a8248f586ad6
3
+ metadata.gz: ac075d7f5fd47fe47a7f01eb0927927340e8ed44
4
+ data.tar.gz: 6b641a3bb8aa60c421ba43a9612792174c28c18a
5
5
  SHA512:
6
- metadata.gz: a4f4c67a6e0509e51edb4a372544324093fab1570d1f3b71cf4f0a419e67b0e9c39c369515a91c977c269155a493df4e058c36a74c41d62c176808aa60ab3a92
7
- data.tar.gz: 27d9b7f6097a4ef551d71ca7f8215b57059c89d898b08ad8ff99ab6d2b57083bcf1a0d479bafc655e3953d6ad2133a0453f6efd4ef8620dda92c185209f2c58a
6
+ metadata.gz: 2250d8b112d3a02250f19a6b9cf3d48f63624209aa0431b86e2457ad3736e5355b6cbf8768d0f57848ad057048c3fceedcbbc63481a48770b7e71bacf0ef667d
7
+ data.tar.gz: b6a3bfd8eeedbe1b911307c375d7672fad9c19f15eaa7a578f45de9a05c1f1d906ca2af20a06ffd8ec9420f178b04128f71471c7437d9dabe11f40a57ed0b156
data/CHANGELOG.md CHANGED
@@ -1,4 +1,7 @@
1
1
  # Change Log
2
+ ## [4.60.3](https://github.com/plivo/plivo-ruby/tree/v4.60.3) (2024-09-06)
3
+ **Feature - Adding more attribute on mdr object**
4
+ - Added `message_sent_time`, `message_updated_time` and `error-message` on get and list Message API
2
5
 
3
6
  ## [4.60.2](https://github.com/plivo/plivo-ruby/tree/v4.60.2) (2024-09-06)
4
7
  **Feature - Adding support for brand_name and app_hash in Create,Get and List Session**
data/README.md CHANGED
@@ -9,7 +9,7 @@ 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
- gem 'plivo', '>= 4.60.2'
12
+ gem 'plivo', '>= 4.60.3'
13
13
  ```
14
14
 
15
15
  And then execute:
@@ -46,7 +46,10 @@ module Plivo
46
46
  conversation_id: @conversation_id,
47
47
  conversation_origin: @conversation_origin,
48
48
  conversation_expiration_timestamp: @conversation_expiration_timestamp,
49
- log: @log
49
+ log: @log,
50
+ message_sent_time: @message_sent_time,
51
+ message_updated_time: @message_updated_time,
52
+ error_message: @error_message
50
53
  }.to_s
51
54
  end
52
55
  end
data/lib/plivo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Plivo
2
- VERSION = "4.60.2".freeze
2
+ VERSION = "4.60.3".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plivo
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.60.2
4
+ version: 4.60.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Plivo SDKs Team