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 +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +1 -1
- data/lib/plivo/resources/messages.rb +4 -1
- data/lib/plivo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ac075d7f5fd47fe47a7f01eb0927927340e8ed44
|
|
4
|
+
data.tar.gz: 6b641a3bb8aa60c421ba43a9612792174c28c18a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
@@ -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